I am trying to pass a value between pages by storing it by using Session State. but I can't get it to work. I think it is storing the value but it can't read it back. I search in the web and some says that it have to be enabled in the web.config file.
this is how I am trying to do it:
writing the value:
Session["name"] = "value";
reading the value:
string str;
str = Session["name"].ToString;
please if anyone have used Session State with Livesupport can they help me.
Thank you in advance.
Samir.M