Looking at the MVC source today:
public class MvcHandler : IHttpHandler, IRequiresSessionState
why does it need SessionState? Isn't MVC trying to do something RESTful?
I know the reason for using session state in MVC is for transferring some data (can't remember the term but session state can be substituted with other mediums ). I think my real question is:
why can't I write an MVC app and specify and have the option to turn off session state completely?