Hi all,
I really need some help. I have a asp.net web project using c#.
I have put one of my datafield in session in one webform and I am calling that same datafield of the session to another web form within a same project.
I worked before and now all of a sudden I am getting null value in my second form when i try to extract from session variable.
As far as I know I haven't change anything in this project.
and my syntaxt is:
what should I do to resolve this?
Thank You,
I really need some help. I have a asp.net web project using c#.
I have put one of my datafield in session in one webform and I am calling that same datafield of the session to another web form within a same project.
I worked before and now all of a sudden I am getting null value in my second form when i try to extract from session variable.
As far as I know I haven't change anything in this project.
and my syntaxt is:
Code:
Session["qid"] = qid; ....................webform1 string getid = Session["qid"].ToString();..............webform2
Thank You,
Comment