Session-less Controllers in ASP.NET MVC 3 RC
Posted by: Malcolm Sheridan ,
on 11/19/2010,
in
Category ASP.NET MVC
Abstract: The following article demonstrates the new session-less controllers in ASP.NET MVC 3 RC.
Microsoft has just released ASP.NET MVC 3 Release Candidate. The razor view engine is certainly the biggest addition to the framework, but one feature that has been long overdue in my opinion is the ability to have session-less controllers. There have been numerous times when I wanted this and had to use workarounds. Now this has been added and I’ll show you how to use it..
Before moving on, you need to download ASP.NET MVC 3 Release Candidate (RC). Click here to download and install them using the Microsoft Web Platform Installer. Likewise you can download it from the website here.
Open studio 2010 and create a new ASP.NET MVC 3 Web Application (Razor) project. The new MVC 3 RC dialog can be seen below. Choose an Empty template and select Razor as the view engine and click OK.
Add a new controller to the project. Controlling the session in the controller is as simple as decorating the controller with the ControllerSessionState attribute. This specifies the type of session support for the controller. Here's the code to create a session-less controller.
ControllerSessionState accepts a SessionStateBehaviour enum. This parameter specifies the type of session support for a controller. The possible values for this are:
-
Disabled - session state is not enabled for processing the request
-
Default - the default ASP.NET logic is used to determine the session state behaviour for the request
-
ReadOnly - read-only session state is enabled for the request
-
Required - full read-write session state is enabled for the request
It's important to remember that if you have a session-less controller, using TempData will not work because the default store for TempData is the session. So doing the following will throw an exception.
Note: As pointed by Anders in the comments section, in the final version of MVC3 the attribute is (re)named: [SessionState(SessionStateBehavior.Disabled)]
The code above will throw an exception because the session has been disabled for the controller. The exception thrown is:
The SessionStateTempDataProvider class requires session state to be enabled.
For me this functionality has been long overdue and I'm very happy it has been included in MVC 3 RC. This will be one feature you will use often.
The entire source code of this article can be downloaded over here.
This article has been editorially reviewed by Suprotim Agarwal.
C# and .NET have been around for a very long time, but their constant growth means there’s always more to learn.
We at DotNetCurry are very excited to announce The Absolutely Awesome Book on C# and .NET. This is a 500 pages concise technical eBook available in PDF, ePub (iPad), and Mobi (Kindle).
Organized around concepts, this Book aims to provide a concise, yet solid foundation in C# and .NET, covering C# 6.0, C# 7.0 and .NET Core, with chapters on the latest .NET Core 3.0, .NET Standard and C# 8.0 (final release) too. Use these concepts to deepen your existing knowledge of C# and .NET, to have a solid grasp of the latest in C# and .NET OR to crack your next .NET Interview.
Click here to Explore the Table of Contents or Download Sample Chapters!
Was this article worth reading? Share it with fellow developers too. Thanks!
Malcolm Sheridan is a Microsoft awarded MVP in ASP.NET, a Telerik Insider and a regular presenter at conferences and user groups throughout Australia and New Zealand. Being an ASP.NET guy, his focus is on web technologies and has been for the past 10 years. He loves working with ASP.NET MVC these days and also loves getting his hands dirty with jQuery and JavaScript. He also writes technical articles on ASP.NET for SitePoint and other various websites. Follow him on twitter @
malcolmsheridan