The cookieless series work in MVC2, however you cannot use POST as a method for submitting a form. It only supports the use of GET. In addition, all the action paths in the forms must be updated to the following template:
<form action="<%= Response.ApplyAppPathModifier("/SomeController/SomeAction") %>" method="get">
. , web.config cookieless:
<system.web>
<sessionState cookieless="true" regenerateExpiredSessionId="true"></sessionState>
</system.web>
!
POST Cookieless MCV2, . POST Cookieless ASP.NET , JavaScript.