I\'d like to email myself a quick dump of a GET request\'s headers for debugging. I used to be able to do this in classic ASP simply with the Request object, but Reque
Reque
You could turn on tracing on the page to see headers, cookies, form variables, querystring etc painlessly:
Top line of the aspx starting:
<%@ Page Language="C#" Trace="true"