首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

求救:MsgBox,该如何处理

2012-02-08 
求救:MsgBox在后台代码中有MsgBox()函数我用客户端访问服务器时,MsgBox根本不能显示在客户端端上啊?是不是

求救:MsgBox
在后台代码中有MsgBox()函数
我用客户端访问服务器时,MsgBox根本不能显示在客户端端上啊?是不是不能这么用阿?
如果通过后台检查后,在前台弹提示消息,应该怎么做啊?

[解决办法]
/// <summary>
/// 弹出对话框根据IsClose的指示是否关掉页面
/// </summary>
/// <param name= "mypage "> </param>
/// <param name= "info "> </param>
/// <param name= "IsClose "> </param>
public static void showmessage(System.Web.UI.Page mypage, string info, bool IsClose)
{
info = info.Replace( "\n ", " ");
//string scriptClientId=string.Empty;
string strscript = " <script language= 'javascript '> ";
strscript += "alert( ' " + info + " '); ";
if (IsClose)
{
strscript += "opener=null; ";
strscript += "window.close(); ";
}
strscript += " </script> ";
if (!mypage.ClientScript.IsStartupScriptRegistered( "ShowMsg "))
mypage.ClientScript.RegisterStartupScript(mypage.GetType(), "ShowMsg ", strscript);

}

热点排行