zoukankan      html  css  js  c++  java
  • ASP.NET后台输出js

    一、使用RegisterClientScriptBlock输出js代码块

     StringBuilder sb = new StringBuilder();
      sb.Append("<input type="text" id="txtGo" name="txtGo" style=" 30px" >");
                    sb.Append("<input type="button" id="btnGo" name="btnGo" value="跳转" onclick="pagego();" >");
     string scriptstrs = "";
                    scriptstrs += "function pagego(){";
                    scriptstrs += " var val = document.getElementById('txtGo').value;";
                    scriptstrs +=" if (val >"+PageCount+") {alert('不能大于'+"+PageCount+");}";
                    scriptstrs += "else {window.location.href = 'WordManager.aspx?page='+val;}}";
                    if (!Page.ClientScript.IsClientScriptBlockRegistered(this.GetType(), "keys"))
                    {
    
                        Page.ClientScript.RegisterClientScriptBlock(this.GetType(), "keys", scriptstrs, true);
    
                    }

    二、使用 RegisterStartupScript输出一次性使用的js代码

          

      string scriptstrs = "<script>alert('欢迎光临!');</script>";
            if (!Page.ClientScript.IsStartupScriptRegistered(this.GetType(),"welcome"))
            {
                Page.ClientScript.RegisterStartupScript(this.GetType(), "welcome", scriptstrs);
            }

    三、使用RegisterClientScriptInclude后台输出已有js文件

    首先创建 js文件test.js

    if (!Page.ClientScript.IsClientScriptIncludeRegistered(this.GetType(), "keys"))//判断keys是否已注册过
    {
       Page.ClientScript.RegisterClientScriptInclude("keys", "testjs.js");     
    } 

    四、运用Response.Write("<script>alert('ww');</script>"); 方式也可输出简单js代码(不建议

  • 相关阅读:
    可以foreach的 必须继承IEnumable 接口才行
    .net 委托的用法
    匿名类的使用
    检测到有潜在危险的 Request.Form 值——ValidateRequest的使用
    IsPostBack用法
    Ajax 与 jquery
    好用的模板引擎NVelocity
    题解【AcWing275】[NOIP2008]传纸条
    题解【AcWing274】移动服务
    题解【AcWing271】杨老师的照相排列
  • 原文地址:https://www.cnblogs.com/sunxi/p/6382194.html
Copyright © 2011-2022 走看看