Have a fun while searching

Wednesday, July 20, 2011

Alter box

public class AlertBoxes
{
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);
}
}

0 comments:

Post a Comment