ScriptManager.RegisterStartupScript(this.UpdatePanel1, this.GetType(), "updateScript", "alert('刪除成功!')", true);
若不是在updatepanel中需要用alert提示訊息,可以使用以下程式碼:
this.Page.ClientScript.RegisterStartupScript(Page.GetType(), "PopWin", "<script language='javascript'>alert('投票成功!');</script>", True)
此程式碼無法防止刷新,但比直接寫Response.Write("<script>alert('投票成功!');</script>")的使用者體驗好!彈出提示框時不會造成目前頁面空白!
-