在updatepanel中回发后如何运行javascript事件

最佳答案

您可以使用ClientScriptManager在重新加载时调用函数:

ClientScriptManager.RegisterStartupScript(this.GetType(), "AKey", "MyFunction();", true);

http://msdn.microsoft.com/en-us/library/asz8zsxy.aspx

07-25 22:38