success: function (result) {
if(result==2)
{
alert("1");
window.location.href = "UserList.aspx";
}
调试状态下执行到window.location.href = "UserList.aspx"; 这一句了么?
你这个需要加上目录吧,路径不对吧! "/xx/UserList.aspx" .确定不是这样子?谷歌F12。看看有没有错误!
window.location.href = "../UserList.aspx";
or
window.location.href = "../../UserList.aspx";
需要跳转相对路径,
window.location.href ="~/UserList.aspx"
关闭弹出框之前 没有执行到跳转那段代码
加上window.location.href = "UserList.aspx";
你把这个路径放到 a 标签单独测试下
在web开发里,都推荐使用绝对路径,是网站虚拟绝对路径,别写成物理路径了
路径写错了