I am using a detail-view
and would like to display an alert-box at the end of my code block that says:
Thank you! Your data has been inserted successfully.
Is there a simple way to do this from the C#
code behind of my ASP.NET
web pages?
After insertion code,
ScriptManager.RegisterClientScriptBlock(this, this.GetType(), "alertMessage", "alert('Record Inserted Successfully')", true);