Friday, June 24, 2011

Globalization .net


foreach (CultureInfo ci in CultureInfo.GetCultures(CultureTypes.
NeutralCultures))
{
DropDownListLang.Items.Add(new ListItem(ci.NativeName, ci.Name));
}


That's cool. You will get all available .net culture into the drop down list.

No comments: