I do have a bad habit. When starting a new Web Application, the first thing I do, add/change the followings in the web.config file:
<sessionState mode="Off"/>
<pages enableViewState="false" enableSessionState="false">
But the new MVC framework seemd very much depended upon the session. You can't even run it disabling the session.
Any thoughts?