Hi,
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...
ex.
$.get("mypage.aspx");
On the server side I want to do certain things when the request is a ajax request...
Thanks!