ASP.NET响应重定向URL错误;来自静态方法

时间:2015-09-24 11:51:39

标签: c# jquery ajax webforms asp.net-3.5

我正在使用ASP.NET 3.5 App。我有$ ajax jQuery函数调用代码隐藏方法并发送人员ID。

我希望Response.Redirect从此方法打开,但会出现以下错误

enter image description here

$ ajax函数调用代码隐藏方法

$.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);            
    }

1 个答案:

答案 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;
        },