I'm using RadWindow alert to show a message when user clicks on a link in Rad Grid.
This alert is working; but
The alert is now stuck in the response scripts and will be shown every time the ajax panel reloaded. Is there a way to clear it once it has been shown?
if
(e.CommandName.Equals("Reset"))
{
ScriptManager
.RegisterStartupScript(Page, typeof(Page), "RadAlert",
"Sys.Application.add_load(function(){radalert(' password reset');});", true);
}This alert is working; but
The alert is now stuck in the response scripts and will be shown every time the ajax panel reloaded. Is there a way to clear it once it has been shown?