如何在asp.net的updatepanel中从后端调用javascript函数。
答案 0 :(得分:2)
ScriptManager.RegisterStartupScript(this,yourUpdatePanel.getType(),"Your js",true);
答案 1 :(得分:0)
这并不难,但这取决于您,如何调用方法/函数
1)没有更新面板
function welcome()
{
alert("Welcome Guys!");
}
protected void Page_Load(object sender, EventArgs e)
{
ClientScript.RegisterStartupScript(Page.GetType(), "OnLoad", "welcome();", true);
}
2)带更新面板
function welcome()
{
alert("Welcome Guys!");
}
protected void Page_Load(object sender, EventArgs e)
{
ScriptManager.RegisterStartupScript(Page, GetType(), "JsStatus","welcome();", true);
}
两者都是完美的作品;)