第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

使用jQuery AJAX“ 401(未經(jīng)授權(quán))”的ASP.NET調(diào)用WebMethod

使用jQuery AJAX“ 401(未經(jīng)授權(quán))”的ASP.NET調(diào)用WebMethod

呼啦一陣風(fēng) 2019-10-18 09:56:44
堅(jiān)持了幾個(gè)小時(shí){"Message":"Authentication failed.","StackTrace":null,"ExceptionType":"System.InvalidOperationException"}我試圖在我的ASP.Net Webform中調(diào)用此WebMethod[WebMethod]public static string GetClients(string searchTerm, int pageIndex){    string query = "[GetClients_Pager]";    SqlCommand cmd = new SqlCommand(query);    cmd.CommandType = CommandType.StoredProcedure;    cmd.Parameters.AddWithValue("@SearchTerm", searchTerm);    cmd.Parameters.AddWithValue("@PageIndex", pageIndex);    cmd.Parameters.AddWithValue("@PageSize", PageSize);    cmd.Parameters.Add("@RecordCount", SqlDbType.Int, 4).Direction = ParameterDirection.Output;    return GetData(cmd, pageIndex).GetXml();}從這個(gè)jquery.ajaxfunction GetClients(pageIndex) {    $.ajax({        type: "POST",        url: "ConsultaPedidos.aspx/GetClients",        data: '{searchTerm: "' + SearchTerm() + '", pageIndex: ' + pageIndex + '}',        contentType: "application/json; charset=utf-8",        dataType: "json",        success: OnSuccess,        failure: function (response) {            alert(response.d);            },            error: function (response) {                alert(response.d);            }    });}但是我總是會(huì)收到這個(gè)錯(cuò)誤:POST http://localhost:64365/ConsultaPedidos.aspx/GetClients 401(未經(jīng)授權(quán))奇怪的是,在我開(kāi)始對(duì)用戶進(jìn)行身份驗(yàn)證之前,這種方法一直有效<system.web>...    <authentication mode="Forms">      <forms loginUrl="~/Account/Login" timeout="2880" defaultUrl="/Dashboard" />    </authentication>    <authorization>      <deny users="?" />    </authorization>...</system.web>有任何想法嗎?
查看完整描述

3 回答

?
慕哥6287543

TA貢獻(xiàn)1831條經(jīng)驗(yàn) 獲得超10個(gè)贊

問(wèn)題解決了

這讓我發(fā)瘋。


在?/ App_Start / RouteConfig.cs內(nèi)部更改:


settings.AutoRedirectMode = RedirectMode.Permanent;

至:


settings.AutoRedirectMode = RedirectMode.Off;

(或只是注釋行)


另外,如果啟用了友善網(wǎng)址,則需要更改


url: "ConsultaPedidos.aspx/GetClients",

至:


url: '<%= ResolveUrl("ConsultaPedidos.aspx/GetClients") %>',

希望這對(duì)其他人有幫助


查看完整回答
反對(duì) 回復(fù) 2019-10-18
?
暮色呼如

TA貢獻(xiàn)1853條經(jīng)驗(yàn) 獲得超9個(gè)贊

內(nèi)部~/App_Start/RouteConfig.cs變化


settings.AutoRedirectMode = RedirectMode.Permanent;


settings.AutoRedirectMode = RedirectMode.Off;


查看完整回答
反對(duì) 回復(fù) 2019-10-18
  • 3 回答
  • 0 關(guān)注
  • 684 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)