ASP.NET后台输出js

Posted 无忧岛主

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET后台输出js相关的知识,希望对你有一定的参考价值。

一、使用RegisterClientScriptBlock输出js代码块

 StringBuilder sb = new StringBuilder();
  sb.Append("<input type=\"text\" id=\"txtGo\" name=\"txtGo\" style=\" width: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代码(不建议

 

以上是关于ASP.NET后台输出js的主要内容,如果未能解决你的问题,请参考以下文章

Js调用asp.net后台代码

asp.net vb 如何让后台在前台输出文本?

ASP.NET前后台互相访问

ASP.NET Core MVC(C#) 文件上传及后台输出响应Aspose.Words处理后文件

asp.net通过后台代码给前台设置css样式,下拉列表在js中的取值

asp.net 后台程序和前台js脚本哪个先执行