欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

Asp.Net alert弹出提示信息的几种方法总结_javascript技巧

程序员文章站 2022-03-19 15:07:59
...
1.ClientScript.RegisterStartupScript(GetType(),"message","");

2.HttpContext.Current.Response.Write("");

3.public static void Show(System.Web.UI.Page page, string msg)
{
page.ClientScript.RegisterStartupScript(page.GetType(), "message", "");
}
Show(this, "第三种方式,无白屏,不变形!");

4.Response.Write("");

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

6.Page.clientscript.registerstartupscript(this.gettype(), "", "");
即可解决.

7.
使用ajax组件的函数,如下:
System.Web.UI.ScriptManager.RegisterStartupScript(this, this.GetType(), "opennewwindow", "alert('弹出框内容!');", true);

8.
在页面的body的最后一行放置一个控件,并在代码页里给这个控件赋值,如:

label.Text=" ";

相关标签: alert弹出