Uploadify (Session and authentication) with ASP.NET MVC

To correct this I propose you a solution… Send the auth cookie value and session id cookie value with uploadify and recreate it before session is retrieved. here is the code to implent in the view : <script> var auth = “<% = Request.Cookies[FormsAuthentication.FormsCookieName]==null ? string.Empty : Request.Cookies[FormsAuthentication.FormsCookieName].Value %>”; var ASPSESSID = “<%= Session.SessionID %>”; … Read more