Request.IsAjaxRequest
を試しましたが、これはWebFormsには存在しません。 JQueryのajax呼び出しを行っています。これがajaxリクエストであるかどうかをC#で確認するにはどうすればよいですか?
MVCコード のような独自の拡張メソッドを作成できます。
例えば。
public static bool IsAjaxRequest(this HttpRequest request)
{
if (request == null)
{
throw new ArgumentNullException("request");
}
return (request["X-Requested-With"] == "XMLHttpRequest") || ((request.Headers != null) && (request.Headers["X-Requested-With"] == "XMLHttpRequest"));
}
HTH、
チャールズ
編集:実際にはコールバックリクエストもajaxリクエストです。
public static bool IsAjaxRequest(this HttpRequest request)
{
if (request == null)
{
throw new ArgumentNullException("request");
}
var context = HttpContext.Current;
var isCallbackRequest = false;// callback requests are ajax requests
if (context != null && context.CurrentHandler != null && context.CurrentHandler is System.Web.UI.Page)
{
isCallbackRequest = ((System.Web.UI.Page)context.CurrentHandler).IsCallback;
}
return isCallbackRequest || (request["X-Requested-With"] == "XMLHttpRequest") || (request.Headers["X-Requested-With"] == "XMLHttpRequest");
}
ScriptManager IsInAsyncPostBack :かどうかを確認してください。
ScriptManager.GetCurrent(Page).IsInAsyncPostBack
通常、X-Requested-With
ヘッダーをテストして、その値が「XMLHttpRequest」であることを確認する必要があります。私は(まだ)C#開発者ではありませんが、グーグルですばやく検索すると、C#では次のようになります。
Request.Headers["X-Requested-With"] == "XMLHttpRequest";
はい、Request.IsAjaxRequest
はX-Requested-With
のヘッダーとクエリ文字列を調べますが、jqueryがX-Requested-With
ヘッダーを送信していないようです。
Fiddlerを使用して送信しているヘッダーを確認するか、POST urlをに設定してクエリ文字列で送信するだけです。
/whatever.aspx?x-requested-with=XMLHttpRequest
次の関数をコードビハインドで記述し、ajax呼び出しから同じ関数を呼び出す場合のように、クラスを[WebMethod(EnableSession = true)]
syntaxで装飾します。
[WebMethod(EnableSession = true)]
public static void getData(string JSONFirstData,string JSONSecondData, string JSONThirdData, string JSONForthData, ...)
{
//code
}
ajaxURLではURL :'/Codebehind.aspx/getData'
のようになります
使用する拡張機能を作成しました。
internal static bool IsAjaxRequest(this HttpRequestMessage request)
{
return request != null && request.Headers.Any(h => h.Key.Equals("X-Requested-With", StringComparison.CurrentCultureIgnoreCase) &&
h.Value.Any(v => v.Equals("XMLHttpRequest", StringComparison.CurrentCultureIgnoreCase)));
}