I want someone who visits my internationalized site to be able to change the language. I thought best way would be to store the language chosen in a cookie - so when the pag
Can you try this?
HttpCookie aCookie = Request.Cookies["UserSettings"]; string lang = Server.HtmlEncode(aCookie.Value);
http://msdn.microsoft.com/en-us/library/ms178194.aspx
EDIT Does this help you? asp.net mvc can't access cookie data in base controller