asp.net development server session not working

3.2k views Asked by At

Can anyone please help me how can I work with 'session' while working on visual studio asp.net development server please? as I found its not working there but working with iis

Regards

2

There are 2 answers

2
Matías Fidemraizer On BEST ANSWER

Session state works great on ASP.NET development server. I'm currently developing a couple of ASP.NET apps and all of them are hosted in this web server during the development process.

Please comment these information:

  • Visual Studio version.
  • Session state mode (inproc, sqlserver, state server or custom?).
  • ASP.NET version.

Also, please edit your question with your webconfig (remove credentials and so, everyone needs to see how your ASP.NET is configured, but not your sensitive data).

Let's see.

2
Rushi Patel On

If Session is not working on your web server then you can use cache instead of Session. I was facing the same problem and it worked.