Hi, In our application we disable session state but with preview 4 there is an exception raised when loading a controller:
The provider requires SessionState to be enabled.
I know there is a ITempDataProvider interface now and I tried to add:
this.TempDataProvider = null;
Into the constructor of my controller but it seems the temp data attempts to load before the controller is executed (according to the stack trace).
Is there any way to disable the loading of the TempData so I don't have to re-enable session state?
Thanks!
Gavin