这里我使用的是jquery ajax调用。 Ajax调用命中了一个aspx页面,它运行正常。但我想重定向到Web方法中的另一个页面。我正在使用:
Respnse.Redirect("test.aspx"),Server.Transfer("test.aspx"), System.Web.HttpContext.Current.Server.Execute("test.aspx", false);
HttpContext.Current.Response.Redirect("test.aspx");
但没有用。
答案 0 :(得分:0)
你无法在web api页面重定向,你可以在ajax调用结束时重定向页面或重定向ajax调用响应函数的页面;
window.location = 'YorUrl';
答案 1 :(得分:0)
绝对正确你需要在ajax命中后使用jquery或Javascript重定向 喜欢 window.location的=" Test.aspx文件&#34 ;;