views:

17

answers:

1

I am setting up AppFabric to be the Session State Provider for a website we are building in Asp.Net MVC2. Since TempData is stored in the session will doing this also make AppFabric the storage provider for TempData?

+1  A: 

Yes. The default implementation of TempData uses whatever the Session backing store happens to be. No extra configuration is required.

Levi