Hello everyone,
I am using VSTS 2008 + C# + .Net 3.5 + IIS 7.0 + ASP.Net. I am wondering if I have both aspx page and html page in my web site, will session variable be transferred only in aspx page? Or session could be transferred in both aspx and html page? (transfer I mean user click link inside my web site to traverse through my site, for example I have 1.aspx, 1.html and 2.aspx in my web site, 1.aspx has link to 1.html, when user clicks 1.html link in 1.aspx to go to 1.html, I mean transfer to 1.html.)
I have this confusion because in aspx we can easily access session status from ASP.Net Session object, but for html page, I am not how session is maintained.
Another confusion is, I think session is a concept for ASP.Net, not for html page, so I think session is maintained only in aspx page. Please correct me if I am wrong. :-)
thanks in advance, George