I heard about the session controller in MVC3.
[SessionState(SessionStateBehaviour.Disabled)] public class MyController :Controller { }
If I use controllers without a session, then how can I view pages in my application for a specific user? What is the best practice?
source share