就下面的代码,我运行了,可以实现 的
功能函数:
#region MsgBox
///
/// 显示“确定”,点击以后就转到预设网址的提示框
///
/// 提示信息
/// “确定”以后要转到预设网址
///
public void MsgBox(string strMsg, string URL)
{
string StrScript;
StrScript = ("");
System.Web.HttpContext.Current.Response.Write(StrScript);
}
#endregion
程序中调用:
MsgBox("修改成功","Default2.aspx");
response.write("");
指定的URL location.href='index.aspx' 这句就是跳转
index.aspx就是URL,你自己改成你自己想要的不就好了
你做的是webform还是winform?
webform在后台CS文件中添加:
ClientScript.RegisterClientScriptBlock(typeof(Page), new Guid().ToString(), "alert('修改密码成功!');", true);
Response.Redirect("此处填写你要跳转的页面名称");
判断messagebox的返回值。然后进行下步操作。具体查看messagebox返回哪几个值,if (){}else{}。这还。。
用JavaScript吧