Monday, August 9, 2010

How to redirect user after an alert message ?

ClientScriptManager script = Page.ClientScript;
if (!script.IsStartupScriptRegistered(this.GetType(), "Alert"))
{
script.RegisterStartupScript(this.GetType(), "Alert",
"");
}

No comments:

Post a Comment