首页 > 代码库 > asp.net 后台验证成功(弹出对话框)并跳转?不能实现

asp.net 后台验证成功(弹出对话框)并跳转?不能实现

原始

  

 Context.Response.Write("<script></script>");
 Response.Redirect();

 

解决办法:

 ClientScript.RegisterStartupScript(this.GetType(), "Success", "<script type=‘text/javascript‘>alert(‘添加成功‘);window.location=‘AddAnLi.aspx‘;</script>‘");

 

asp.net 后台验证成功(弹出对话框)并跳转?不能实现