I have a website using framework 4. I made language change with global resources. on the button click code behind i use these codes.
protected void Button2_Click(object sender, EventArgs e)
{
dil = "en-US";
var ci = new CultureInfo(dil); //TO_DO Route culture
Thread.CurrentThread.CurrentUICulture = ci;
Thread.CurrentThread.CurrentCulture = ci;
Session["culture"] = ci;
}
an also my resx files:
-PB.resx
-PB.en-US.resx
-PB.ru-RU.resx
default language is work fine but how can i change to english and russian? where is my mistake?
I solve it after a long search. this is answer and all codes you need. I make this for the master page in visual studio 2010.
You can use ispostback in page load.
after then we can add button click and cookies
and last global.asax file helps solving this problem.
If you are using html tags instead of .net tags you can use these for adding text control.