csharp asp .net c#消息框

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp asp .net c#消息框相关的知识,希望对你有一定的参考价值。

protected void MsgBox(string key, string msg)
{
    StringBuilder script =
        new StringBuilder().AppendFormat("alert('{0}');", msg.Replace("'", @"\'"));
    ScriptManager.RegisterClientScriptBlock(this, GetType(), key, script.ToString(), true);
}

以上是关于csharp asp .net c#消息框的主要内容,如果未能解决你的问题,请参考以下文章

csharp C#:JsonResult替代ASP.NET MVC。

ASP.NET Web 应用程序消息框

无法使用 SQL 数据激活消息框 - ASP.NET

csharp 一些常见的连接字符串(在Asp.Net和C#应用程序中非常常用)

csharp 将Castle Windsor依赖项注入ASP.NET Web API过滤器C#

ASP.NET点击提交按钮时弹出一个消息框,但是不想把fileupload控件的路径清空改怎么办?