简体   繁体   English

保存数据asp.net后,在按钮单击时显示警报消息

[英]Show Alert message on button click after saving the data asp.net

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. 我想在按钮单击上将记录保存到数据库之后显示消息“成功添加”,该按钮单击已经具有JS功能以对数据进行一些验证。 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? 如何在结束保存过程中在弹出窗口中显示成功消息?

Use Response.Write("<script>alert('Successfully added');</script>"); 使用Response.Write("<script>alert('Successfully added');</script>"); on button code behind. 在按钮代码后面。

尝试这个,

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 如何在asp.net按钮单击上显示Bootstrap Autocloseable警报消息? - How to display Bootstrap Autocloseable alert message on asp.net button click? 开按钮如果texbox值为空,则单击单击使用asp.net mvc显示警报? - On button Click if texbox value is empty show alert using asp.net mvc? ASP.NET按钮单击显示div - ASP.NET show div on button click 如果某些条件为真,我想在按钮单击时在ASP.net中显示带有“是”和“否”按钮的消息 - I want to show a message with 'yes' and 'no' button in ASP.net on button click if some condition is true 在重定向到其他页面ASP.NET之前显示警报消息 - Show alert message before redirecting to other page ASP.NET 为什么要求asp.net中的字段验证器在清除按钮单击时显示错误消息? - Why require field validator in asp.net show error message on clear button click? 确认 asp.net 按钮后触发回发警报 - Alert firing postback after confirmation asp.net button 如何给出提示信息,以及在重定向页面到asp.net中的另一个按钮单击事件之后 - how to give prompt message & after that redirecting page to another in button click event in asp.net 在ASP.NET(Web窗体)中单击按钮后显示“ Loading / Loader / Progress Bar” - Show “Loading/Loader/Progress Bar” after button click in ASP.NET (Web Form) 无法在按钮单击时快速显示警报消息 - Unable to show alert message in express on button click
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM