The session information in ASP.NET Core is stored using _________ by default.

  • Cookies
  • Local Storage
  • Session Storage
  • Database
In ASP.NET Core, session information is typically stored using cookies by default. Cookies are small pieces of data sent from a web server and stored on the client's browser. They are commonly used to maintain user state and session data across HTTP requests, making them suitable for storing session information.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *