views:

83

answers:

1

Will asp.net-mvc ajax related requests count as page views in IIS?

Does it make a different on the response type of the request? i.e. json versus ...

+3  A: 

IIS logs do not have a separate column for content-type (text/html, application/json). Views - anytime IIS responds to an HTTP request - will certainly show up in the log.

Any differentiation between AJAX/non-AJAX requests would need to be done by your log analyzer based on parsing out specific AJAX-requested URLs.

Peter J