Sunday, February 12, 2012

Javascript Alert Message from code behind in ASP.NET

public static void ShowAlertMessage(string error)
{

Page page = HttpContext.Current.Handler as Page;
if (page != null)
{
error = error.Replace("'", "\'");
ScriptManager.RegisterStartupScript(page, page.GetType(), "err_msg", "alert('" + error + "');", true);
}
}