当前位置: 代码迷 >> ASP >> ASP.NET中判断请求是不是为Ajax请求一法
  详细解决方案

ASP.NET中判断请求是不是为Ajax请求一法

热度:221   发布时间:2012-09-14 11:53:44.0
ASP.NET中判断请求是否为Ajax请求一法

判断是否为ajaxRequest 在http请求头中查找是否包含X-Requested-With,并且值为XMLHttpRequest

string sheader = Request.header["X-Requested-With"];
bool isAjaxRequest = (sheade != null && sheader == "XMLHttpRequest") ? true : false;

?

?

判断是否微软ajax框架,只需判断头标题x-microsoftajax是否为Delta-true.

?

string sheader = Request.header["x-microsoftajax"];
bool isAjaxRequest = (sheade != null && sheader == "Delta-true") ? true : false;

?

  相关解决方案