Answers:
另外还有Request.IsAjaxRequest
,如果你正在使用MVC的更高版本。我没有版本1了,所以我不能说它是否在版本1中。
如果需要在Global.asax.cs中进行此检查,请尝试以下操作:
new HttpRequestWrapper(Request).IsAjaxRequest()
HttpRequestBase
。我没有这个需要,所以我看起来并不深。感谢您的注意。
它在ASP.NET MVC 3中对我有用
if (Request.IsAjaxRequest())
{
// ajax request handled
}
new HttpRequestWrapper(Request).IsAjaxRequest()