在使用UpdatePanel时JS对话框出错的解决办法

在使用updatepanel时不能直接在后台使用Response.Write输出或用JS弹出窗口,应该改用ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "updateScript", "alert('对不起,账号和密码错误');", true); 这样的方式来输出。

 

你可能感兴趣的:(update)