I wanted an alternative to using alert() server-side via Page.RegisterStartupScript to display message box?
Deos anyone have an code example (C#) to call a message box using the modal popup extender to display to users (Ex: "Your record has been updated!")? I would like to call from the server-side after an update function. For example, my current way:
If (UpdateRecord(User myUser))
{
Page.RegisterStartupScript("UpdateMessage","MessageAlert('Your record has been updated')");
BindGrid();
}