I have an aplication that loads many asp.net pages and in every loop I need to take some information from the Sesion of the loaded page.
How can I do that?
example:
WebRequest request = HttpWebRequest.Create(url);
WebResponse response = request.GetResponse();
//How to get the Session from response???