what are different types of sessions in ASP.NET
asp.net, session
Solution
Typical sessions are based on a cookie. The server gives you one, you send it to the server upon every request. However, Asp.net allows you a different type of sessions as well - cookieless sessions. The session id is then "stored" in the URL address. This technique is very dangerous if used improperly.
Problem
Here I want to know different types of Session in ASP.NET and not Session States. That was the question asked in an interview.