ASP .NET调用javascript中Response.Write和ClientScript.RegisterStartupScript的区别
更新时间:2010年12月08日 16:37:46 作者:
最近在用ASP .NET的code behind 调用javascript中发现Response.Write不能拿到form的值,而ClientScript.RegisterStartupScript可以。
例如下面的代码
StringBuilder sb = new StringBuilder();
sb.Append("<script language=javascript>");
sb.Append("alert(document.forms.length);");
sb.Append("</script>");
Response.Write(sb.ToString());
ClientScript.RegisterStartupScript(this.GetType(), "test", sb.ToString());
可以明显的看到,Response.Write得到的是0,ClientScript.RegisterStartupScript得到的是1。
复制代码 代码如下:
StringBuilder sb = new StringBuilder();
sb.Append("<script language=javascript>");
sb.Append("alert(document.forms.length);");
sb.Append("</script>");
Response.Write(sb.ToString());
ClientScript.RegisterStartupScript(this.GetType(), "test", sb.ToString());
可以明显的看到,Response.Write得到的是0,ClientScript.RegisterStartupScript得到的是1。
相关文章
ASP.NET Core Authentication认证实现方法
这篇文章主要介绍了ASP.NET Core Authentication认证实现方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-08-08ASP.NET Gridview 中使用checkbox删除的2种方法实例分享
ASP.NET Gridview 中使用checkbox删除的2种方法实例分享,需要的朋友可以参考一下2013-06-06
最新评论