I\'m learning asp.net mvc 2, it\'s very excting with me.
I has built a small MVC2 application, it is working fine in built it ASP.net Development Server. However, there
If you are using cookie based sessions it could be that you are not allowing cookies in IE.
I believe by default the session identity is stored in a cookie between requests to allow the application to reconnect to its session data.
You can use cookieless sessions which append the session identity to the url as a querystring, or at least in webforms - I'm not sure how this behaves in mvc.