博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ASP.NET 弹出提示框所有种类(转)
阅读量:6540 次
发布时间:2019-06-24

本文共 2917 字,大约阅读时间需要 9 分钟。

添加一个类:把下面的文件放在类中就可以了。 using System;using System.Web;using System.Data;using System.Data.SqlClient; public class MessageBox    {      public MessageBox()        {         }         ///         /// 警告框        ///         /// 警告字串        /// 
警告框JS
public void MsgBox(string _Msg) { string StrScript; StrScript = (""); System.Web.HttpContext.Current.Response.Write(StrScript); } /// /// 一个含有“确定”、“取消”的警告框 /// /// 警告字串 /// “确定”以后要转到预设网址 ///
警告框JS
public void MsgBox1(string _Msg, string URL) { string StrScript; StrScript = (""); System.Web.HttpContext.Current.Response.Write(StrScript); } /// /// 一个含有“确定”,点击以后就转到预设网址的警告框 /// /// 警告字串 /// “确定”以后要转到预设网址 ///
警告框JS
public void MsgBox2(string _Msg, string URL) { string StrScript; StrScript = (""); System.Web.HttpContext.Current.Response.Write(StrScript); } public static void MsgBox22(string _Msg, string URL) { string StrScript; StrScript = (""); System.Web.HttpContext.Current.Response.Write(StrScript); } /// /// 一个含有“确定”,点击关闭本页的警告框 /// /// 警告字串 ///
警告框JS
public void MsgBox3(string _Msg) { string StrScript; StrScript = (""); System.Web.HttpContext.Current.Response.Write(StrScript); } /// /// 一个含有“确定”,点击返回先前的网页警告框 /// /// 警告字串 /// 要倒退几步 ///
警告框JS
public void alert_history(string _Msg, int BackLong) { string StrScript; StrScript = (""); System.Web.HttpContext.Current.Response.Write(StrScript); } /// /// 一个含有“确定”,点击后关闭自己,刷新父窗口警告框 /// /// 警告字串 ///
警告框JS
public void alert_reloadwin(string _Msg) { string StrScript; StrScript = (""); System.Web.HttpContext.Current.Response.Write(StrScript); } /// /// 弹出对话框 /// /// 页面 /// message信息 public static void alert(System.Web.UI.Page page, string content) { page.ClientScript.RegisterStartupScript(page.GetType(), " ", ""); } /// /// 弹出对话框 /// /// 页面 /// message信息 public static void alert(System.Web.UI.Page page, string content,String _daiMa) { page.ClientScript.RegisterStartupScript(page.GetType(), " ", ""); } public static void alert(System.Web.UI.Page page, object _code) { page.ClientScript.RegisterStartupScript(page.GetType(), "onLoad", ""); } }

  

转载地址:http://ousdo.baihongyu.com/

你可能感兴趣的文章
JavaScript面向对象 ~ 原型和继承(1)
查看>>
ubuntu下安装nginx时依赖库zlib,pcre,openssl安装方法
查看>>
spring cloud微服务分布式云架构--hystrix的使用
查看>>
linux tail
查看>>
解决Mac启动Eclipse Memory Analyzer报错问题
查看>>
jquery的$().each,$.each的区别
查看>>
自己写的进度条###
查看>>
windows磁盘扩容(动态磁盘)
查看>>
在jsp页面中添加富文本编译器(ueditor)+ 图片上传功能
查看>>
fedora12下安装oracle11客户端
查看>>
实现批量添加20个用户,用户名为user1-50,密码为user后面跟5个随机字符
查看>>
Net命令详解
查看>>
CentOS linux 高可用集群之heartbeat
查看>>
用bat更改hosts文件批处理
查看>>
Logwatch日志分析工具
查看>>
docker 基本操作Ⅱ(关于镜像操作)
查看>>
分工與合作
查看>>
轻松设置站点对ASP危险组件的调用权限
查看>>
看懂“拜占庭容错”,也就看懂了区块链的核心技术
查看>>
APMServ 5.2.6 Win7 Apache启动失败,请检查相关配置
查看>>