我正在使用ASP.NET 3.5 App。我有$ ajax jQuery函数调用代码隐藏方法并发送人员ID。
我希望Response.Redirect从此方法打开,但会出现以下错误
$.ajax({
url: 'AddUserInRole.aspx/GetRolesListFilteredByStaff_NotIn',
type: "POST",
data: JSON.stringify({ GivenStaffID: selectStaffIDToAddRole }),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
alert(response.d);
},
failure: function (response) {
alert(response.d);
}
}).done(function (response) {
//
});
[WebMethod]
private static void GetRolesListFilteredByStaff_NotIn(string GivenStaffID)
{
Response.Redirect("/SelectRoleForStaff.aspx?staffID='GivenStaffID'");
}
我的第二个问题是如何从新上传页面的URL中读取staffID
我设法调用了require方法,但它没有重定向页面......
[WebMethod]
public static void GetRolesListFilteredByStaff_NotIn(string GivenStaffID)
{
HttpContext.Current.Response.Redirect("/SelectRoleForStaff.aspx?staffID="+GivenStaffID);
}
答案 0 :(得分:5)
更新您的方法以返回重定向的网址,如:
[WebMethod]
public static string GetRolesListFilteredByStaff_NotIn(string GivenStaffID)
{
return "SelectRoleForStaff.aspx?staffID=" + GivenStaffID;
}
在你的ajax成功中做到这一点:
success: function (response) {
window.location = response;
// OR
window.location = response.d;
},