VirtualMJ

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
/// <summary>
    /// 在当前页面弹出提示框
    /// </summary>
    /// <param name="page"></param>
    /// <param name="o"></param>
    /// <param name="strText"></param>
    public static void ShowMessageBox(Page page,string strText)
    {
        strText = strText.Replace("'", "").Replace(";", "").Replace("<", "").Replace(">", "").Trim();
        page.ClientScript.RegisterStartupScript(page.GetType(), "", "<script>alert('" + strText + "');</script>");
    } 
posted on 2006-09-26 17:18  小马过河MJ  阅读(382)  评论(0编辑  收藏  举报