hello,
actualy i am trying to implement Globalization and localization funda in my applic. so that i attached one dropdownlist and give its items hindi nd english nd generated local resources signin.aspx.resx and added another resource under this signin.aspx.hi-in.resx and written this code as follows
protected override void InitializeCulture()
{
if (Request.Form["DropDownList1"] != null)
{
//for UI elements
UICulture = Request.Form["DropDownList1"];
//for region specific formatting
Culture = Request.Form["DropDownList1"];
}
base.InitializeCulture();
}
but hindi to english conversion not working please help