代码:
ScriptManager.RegisterClientScriptBlock(UpdatePanel1, typeof(UpdatePanel), "test", "alert('test');", true);
解释:
RegisterClientScriptBlock是 ScriptManager的一个静态方法
参数:
control (Control) :这个参数是注册脚本块的控件.如果你是在updatepanel中注册时,即updatepanel (应该写updatepanel的ID).
type (Type) :这个参数是注册脚本块控件的类型,即updatepanel的类型。
key (String) :这个参数是脚本酷块的惟一标识(关键字)
script (String) :这个参数是要注册的脚本字符串.
addScriptTags (Boolean) :这个参数表示是否要在您的字符串两边使用“<script>”和“</script>”包围起来.