Globalization
it is use to dovelop multilingual Application.
ex-
Malay (Malaysia)
ms-MY
using System;using System.Data;
using System.Linq;
Using System.Web.Security;
using System.Web.UI;
using System.Globalization;
public partial class _Default : System.Web.UI.Page
{protected void Page_Load(object sender, EventArgs e)
{CultureInfo[] arr = CultureInfo.GetCultures(CultureTypes.SpecificCultures);
foreach (CultureInfo cc in arr)
{
DropDownList1.Items.Add(new ListItem(cc.DisplayName, cc.Name));
}}protected void Button1_Click(object sender, EventArgs e)
{//this.Culture = "sa-IN";
}
protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
Response.Write(DropDownList1.SelectedItem.Text + "<br>" + DropDownList1.SelectedItem.Value);
this.Culture = DropDownList1.SelectedItem.Value;
}
}
No comments:
Post a Comment