从页面*.aspx.cs调用javascript函数
本文关键字:调用 javascript 函数 cs aspx | 更新日期: 2023-09-27 18:25:54
我想从我的codeehind中调用一个javascript函数。在我的按钮点击事件处理程序中,我有:
protected void load_data_Click(object sender, EventArgs e)
{
if (dt.Rows.Count == 1)
{
BindDl();
}
else
{
//if dt.rows.count! = 1 I want to call a JavaScript function where be one alert! how to do?
}
}
此页面将对您的有所帮助
// Get a ClientScriptManager reference from the Page class.
ClientScriptManager cs = Page.ClientScript;
Type cstype = this.GetType();
String csName = "MyAlertFunction";
// Check to see if the startup script is already registered.
if (!cs.IsStartupScriptRegistered(cstype, csName))
{
String jsFunction = "yourFunctionHere()";
cs.RegisterStartupScript(cstype, csName, jsFunction, true);
}
用户凭证管理器
ScriptManager.RegisterStartupScript(this, typeof(string), "SHOW_ALERT", "alert('')", true);
在可以放置javascript代码的地方,next参数true会自动放入脚本标记,这样您就不必编写它们了。