我正在尝试从 Code behind 中调用 JavaScript 函数,但到目前为止还没有运气。我尝试在Page_Load
方法中添加以下片段。
我试过如下
ScriptManager.RegisterStartupScript(this.Page, this.GetType(), "foo", "alert('test22222')", true);
也如下
Page.ClientScript.RegisterStartupScript(Type.GetType("System.String"), "addScript", "alert('test22222');", true);
没有一个对我有用。我在这里有什么遗漏吗?我想在加载页面之前显示警报消息。
任何帮助表示赞赏。谢谢。