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
To set cookies value:
HttpCookie Userinfo= new HttpCookie("Userinfo");
Userinfo["Username"] = application.username.ToString();
Response.Cookies.Add(Userinfo);
To get cookies value:
HttpCookie reqUserinfocookies = Request.Cookies["Userinfo"];
if (reqUserinfocookies != null)
{
string username = reqUserinfocookies["username"];
}