2012-05-30 48 views
2

我想顯示一個消息後,「添加成功」的記錄保存到其上已經給上的數據一些驗證一個JS功能按鈕點擊數據庫之後。 我已經嘗試了下面的代碼,但沒有顯示。顯示警告信息保存數據asp.net

ScriptManager.RegisterStartupScript(this, typeof(Page), "Alert", 
"<script>alert('" + "Successfully added" + "');</script>", false); 

如何在彈出窗口中顯示成功消息與最終保存過程?

+0

檢查該SO線程http://stackoverflow.com/questions/1920397/how-to-popup-a-alert-on-button-click-from-code-behind -in-asp-net-2-0 – Chuck

+0

該回復對我來說不起作用。 – Geeth

回答

6

使用 Response.Write("<script>alert('Successfully added');</script>"); 後面的按鈕代碼。

2

試試這個,

System.Web.HttpContext.Current.Response.Write("<script language=\"JavaScript\">alert(\"write here what you want\")</script>");