ASP.Net MVC 2 Beta -
I am aware there are some changes to TempData in MVC 2 Beta.
When trying to use TempData if the key name get/set have different case sensitivity, then the key doesn't seem to get destroyed.
e.g.
in Controller
TempData["Message"] = message;
in View
<% = TempData["message"]%>
My view will is play the value in message, but it never gets destroyed. So if I redirect elsewhere it sticks around. I don't believe case sensitivity was an issue in MVC 1?