Asp.Net alert弹出提示信息的5种方法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Asp.Net alert弹出提示信息的5种方法相关的知识,希望对你有一定的参考价值。

1.ClientScript.RegisterStartupScript(GetType(),"message","<script>alert(‘第一种方式,无白屏!‘);</script>");
2.HttpContext.Current.Response.Write("<script>alert(‘第二种方式,有白屏!‘)</script>");
3.public static void Show(System.Web.UI.Page page, string msg)
    {
        page.ClientScript.RegisterStartupScript(page.GetType(), "message", "<script language=‘javascript‘ defer>alert(‘" +  msg.ToString() + "‘);</script>");
    }
  Show(this, "第三种方式,无白屏!");
4.Response.Write("<script>alert(‘第四种方式,有白屏!‘)</script>");

5.window.showModalDialog(‘XXX.aspx‘, ‘‘, ‘dialogWidth:429px;dialogHeight:200px;location:no,menubar:no,toolbar:no,status:no‘);

 

(http://www.cnblogs.com/technet/articles/1691839.html)

以上是关于Asp.Net alert弹出提示信息的5种方法的主要内容,如果未能解决你的问题,请参考以下文章

asp.net如何实现alert()弹出对话框后延时2秒再跳转页面。急!!!

有关js弹出提示框几种方法

asp.net弹出对话框(提示框)的方法

asp.net后台实现点击按钮弹出提示框

如何在asp.net中弹出可编辑的窗口

Asp.net中 弹出alert之后,想通过点击alert中的确定选项 来触发其他事件,如何写代码?