C#弹出提示框

2024-12-23 01:07:50
推荐回答(5个)
回答1:

就下面的代码,我运行了,可以实现 的
功能函数:
#region MsgBox
///


/// 显示“确定”,点击以后就转到预设网址的提示框
///

/// 提示信息
/// “确定”以后要转到预设网址
/// 提示框JS
public void MsgBox(string strMsg, string URL)
{
string StrScript;
StrScript = ("");
System.Web.HttpContext.Current.Response.Write(StrScript);
}
#endregion

程序中调用:
MsgBox("修改成功","Default2.aspx");

回答2:

response.write("");

指定的URL location.href='index.aspx' 这句就是跳转
index.aspx就是URL,你自己改成你自己想要的不就好了

回答3:

你做的是webform还是winform?

webform在后台CS文件中添加:
ClientScript.RegisterClientScriptBlock(typeof(Page), new Guid().ToString(), "alert('修改密码成功!');", true);
Response.Redirect("此处填写你要跳转的页面名称");

回答4:

判断messagebox的返回值。然后进行下步操作。具体查看messagebox返回哪几个值,if (){}else{}。这还。。

回答5:

用JavaScript吧