ASP.NET中的几种弹出框提示基本实现方法(asp.net core 跨平台)快来看

随心笔谈2年前发布 编辑
176 0
🌐 经济型:买域名、轻量云服务器、用途:游戏 网站等 《腾讯云》特点:特价机便宜 适合初学者用 点我优惠购买
🚀 拓展型:买域名、轻量云服务器、用途:游戏 网站等 《阿里云》特点:中档服务器便宜 域名备案事多 点我优惠购买
🛡️ 稳定型:买域名、轻量云服务器、用途:游戏 网站等 《西部数码》 特点:比上两家略贵但是稳定性超好事也少 点我优惠购买

using System;

using System.Web;

namespace ShowMessage

{

///

/// Msg 的摘要说明。

///

public class ShowMessage

{

public ShowMessage()

{

//

// TODO: 在此处添加构造函数逻辑

//

}

public static void ShowMessage(string strMsg)

{

System.Web.HttpContext.Current.Response.Write(““);

}

public static void ShowMessage(System.Web.UI.Page page, string strMsg)

{

page.Response.Write(““);

}

public static void ShowMessage( string strMsg, string Url)

{

System.Web.HttpContext.Current.Response.Write(““);

}

public static void ShowMessage( System.Web.UI.Page page,string strMsg, string Url)

{

page.Response.Write(““);

}

public static void ShowConfirm(string strMsg, string strUrl_Yes, string strUrl_No)

{

System.Web.HttpContext.Current.Response.Write(“

“‘ } else {window.location.href=’https://www.jb51.net/article/”+ strUrl_No +”‘ };”);

}

}

}

© 版权声明

相关文章