The Net Firebug panel will display all requests, including headers.
EDIT : You already knew how to do this in the browser as soon as I posted the message. Try the headers property:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://www.stackoverflow.com"); request.Method = "GET"; HttpWebResponse response = (HttpWebResponse) request.GetResponse(); Console.WriteLine(response.Headers);
Chris doggett
source share