Rana
Rana

Reputation: 6154

asp.net development server session not working

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

Upvotes: 1

Views: 3290

Answers (2)

Rushi Patel
Rushi Patel

Reputation: 1

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.

Upvotes: 0

Matías Fidemraizer
Matías Fidemraizer

Reputation: 64943

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.

Upvotes: 2

Related Questions