1.

Explain the ASP.NET session state modes.

Answer»

There are five primary SESSION state modes PRESENT in ASP.NET.

  • InProc MODE – Stores session state in the web server memory
  • StateServer Mode – Stores session in ASP.NET state service
  • SQLServer Mode – Store the session state in a SQL database
  • Custom Mode – DEVELOPERS can SPECIFY the storage provider here
  • Off Mode – Completely disables the session state


Discussion

No Comment Found