现在的位置: 首页 > 综合 > 正文

在web网页编程时常用的消息对话框总结

2012年04月19日 ⁄ 综合 ⁄ 共 1504字 ⁄ 字号 评论关闭

 以前编程时在写消息对话时,总是每到用的地方就来一个Response.Write("<scritp language='javascript'>alert('消息');</script>");
为了减少代码的重写,总结了一下常用的对话框.
public class WebMessageBox
{
    /// <summary>
    /// 网页消息对话框
    /// </summary>
    /// <param name="Message">要显示的消息文本</param>
    public static void Show(string Message)
    {
        HttpContext.Current.Response.Write("<script language='javascript' type='text/javascript'>alert('" + Message + "')</script>");
        HttpContext.Current.Response.Write("<script>history.go(-1)</script>");
        HttpContext.Current.Response.End();
    }

    /// <summary>
    /// 网页消息对话框
    /// </summary>
    /// <param name="Message">要显示的消息文本</param>
    /// <param name="Src">点击确定后跳转的页面</param>
    public static void Show(string Message, string Src)
    {
        HttpContext.Current.Response.Write("<script language='javascript' type='text/javascript'>alert('" + Message + "');location.href='" + Src + "'</script>");
        HttpContext.Current.Response.End();
    }

    /// <summary>
    /// 网页消息对话框
    /// </summary>
    /// <param name="Message">要显示的消息文本</param>
    /// <param name="Close">关闭当前页面</param>
    public static void Show(string Message, bool Close)
    {
        if (Close)
        {
            HttpContext.Current.Response.Write("<script language='javascript' type='text/javascript'>alert('" + Message + "');window.close()</script>");
            HttpContext.Current.Response.End();
        }
        else
        {
            HttpContext.Current.Response.Write("<script language='javascript' type='text/javascript'>alert('" + Message + "')</script>");
            HttpContext.Current.Response.End();
        }
    }

抱歉!评论已关闭.