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 can use,
string headers = Request.Headers.ToString();
But It will return URL encoded string so to decode it use below code,
String headers = HttpUtility.UrlDecode(Request.Headers.ToString())