Session variable does not work in ASP.NET page

paladian

New Member
I set a session varible: session("mysession")="my string"<BR>I call session varible to display in next page: <BR> dim mystring as string=session("mysession")<BR>after running it, there no result for mystring. I wonder that's why. Please give me an advice ASAP. Thank million.Do you have cookies enabled in your browser? If not you may want to set the web.config to cooklieless=true instead.<BR><BR>What about doing a Response.Write("mysession") on the next page, just to rule out it being the string or something else.
 
Back
Top