Detect ajax call, ASP.net

前端 未结 1 570
谎友^
谎友^ 2021-01-02 16:26

how can I detect if a request is an AJAX-request (from jQuery) on the server-side of a ASP.net application. I don´t want to do this: mypage.aspx?this_is_ajax=true...

相关标签:
1条回答
  • 2021-01-02 16:31

    ASP.NET MVC had a great extension for this, that did work with JQuery. It checked it this way:

    Check the core collection:

    request["X-Requested-With"] == "XMLHttpRequest"
    

    Check the headers collection (ensuring its not null):

    request.Headers["X-Requested-With"] == "XMLHttpRequest"
    

    It did it as an extension method, so you could recreate it, or use it if you are using ASP.NET MVC through Request.IsAjaxRequest().

    0 讨论(0)
提交回复
热议问题