admin管理员组文章数量:1345179
I want to show a message "Successfully added" after saving the record to the database on button click which already having a JS function for some validation on the data. i have tried the following code but nothing is showing.
ScriptManager.RegisterStartupScript(this, typeof(Page), "Alert",
"<script>alert('" + "Successfully added" + "');</script>", false);
How to show the success message in a popup with at the end save process?
I want to show a message "Successfully added" after saving the record to the database on button click which already having a JS function for some validation on the data. i have tried the following code but nothing is showing.
ScriptManager.RegisterStartupScript(this, typeof(Page), "Alert",
"<script>alert('" + "Successfully added" + "');</script>", false);
How to show the success message in a popup with at the end save process?
Share Improve this question asked May 30, 2012 at 11:54 GeethGeeth 5,34323 gold badges86 silver badges136 bronze badges 2- Check this SO thread stackoverflow./questions/1920397/… – user1921 Commented May 30, 2012 at 11:57
- That reply's are not working for me. – Geeth Commented May 30, 2012 at 12:08
2 Answers
Reset to default 6Use
Response.Write("<script>alert('Successfully added');</script>");
on button code behind.
try this,
System.Web.HttpContext.Current.Response.Write("<script language=\"JavaScript\">alert(\"write here what you want\")</script>");
本文标签: javascriptShow Alert message on button click after saving the data aspnetStack Overflow
版权声明:本文标题:javascript - Show Alert message on button click after saving the data asp.net - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743708456a2525517.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论