in my pageload i have got the session["name"]
When i use this code to save:
Stream stream = null;
request = (HttpWebRequest)WebRequest.Create(url);
response = (HttpWebResponse)request.GetResponse();
When it comes to this line:
response = (HttpWebResponse)request.GetResponse();
it again move on to the pageload and that time the session is null. how??? how to maintain the session in the same page. why it is cleared when this line encounters...