本文參考:http://www.cnblogs.com/ymss1987/archive/2009/02/16/1391681.html
在 asp.net 網站裡用 Response.write("<script>alert('登陸成功!')</script>"); 是OK的,
但是把程式碼移到 ajax 網站後,在 UpdatePanel 的作用下,
javascript 在網頁開啟時會出現異常或無法作用,
而在另一個沒有用 UpdatePanel 的 aspx 中,Response.write("<script>alert('登陸成功!')</script>");
則能正常彈出訊息視窗。
如果要在UpdatePanel中使用javascript,可以使用以下的語法:
ScriptManager.RegisterClientScriptBlock(UpdatePanel1, typeof(UpdatePanel), "test", "alert('保存成功!');", true);
全站熱搜
留言列表