代码:
public static void Alert(string message)
{
Page page = HttpContext.Current.Handler as Page;
Guid gid = new Guid();
string jsblock = "js" + gid.ToString();
page.ClientScript.RegisterStartupScript(page.GetType(), jsblock, string.Format("", message));
}