ASP.Net/Page/Culture
Содержание
Culture auto (C#)
<%@ Page Language="C#" Culture="auto:en-US" UICulture="auto:en-US"%>
<script runat="server">
void Page_PreRender()
{
lblDate.Text = DateTime.Now.ToString("D");
lblPrice.Text = (512.33m).ToString("c");
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Select Culture Auto</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Today"s date is:
<br />
<asp:Label
id="lblDate"
Runat="server" />
<br /><br />
The price of the product is:
<br />
<asp:Label
id="lblPrice"
Runat="server" />
</div>
</form>
</body>
</html>
Culture: id-ID
<%@ Page Language="C#" Culture="id-ID" %>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Show Calendar</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Calendar
id="Calendar1"
Runat="server" />
</div>
</form>
</body>
</html>
Get Culture: de_DE, id-ID (C#)
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Globalization" %>
<script runat="server">
void Page_Load()
{
// Get German Culture Info
CultureInfo gCulture = new CultureInfo("de-DE");
// Use culture when formatting strings
lblGermanDate.Text = DateTime.Now.ToString("D", gCulture);
lblGermanPrice.Text = (512.33m).ToString("c", gCulture);
// Get Indonesian Culture Info
CultureInfo iCulture = new CultureInfo("id-ID");
// Use culture when formatting strings
lblIndonesianDate.Text = DateTime.Now.ToString("D", iCulture);
lblIndonesianPrice.Text = (512.33m).ToString("c", iCulture);
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>ToString Culture</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>German</h1>
Today"s date is:
<br />
<asp:Label
id="lblGermanDate"
Runat="server" />
<br /><br />
The price of the product is:
<br />
<asp:Label
id="lblGermanPrice"
Runat="server" />
<h1>Indonesian</h1>
Today"s date is:
<br />
<asp:Label
id="lblIndonesianDate"
Runat="server" />
<br /><br />
The price of the product is:
<br />
<asp:Label
id="lblIndonesianPrice"
Runat="server" />
</div>
</form>
</body>
</html>
Get culture from binded ObjectDataSource (C#)
<%@ Page Language="C#" %>
<script runat="server">
protected void btnSelect_Click(object sender, EventArgs e)
{
Culture = ddlCulture.SelectedValue;
}
void Page_PreRender()
{
lblDate.Text = DateTime.Now.ToString("D");
lblPrice.Text = (512.33m).ToString("c");
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Select Culture</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label
id="lblCulture"
Text="Culture:"
AssociatedControlID="ddlCulture"
Runat="server" />
<asp:DropDownList
id="ddlCulture"
DataTextField="DisplayName"
DataValueField="Name"
DataSourceID="srcCultures"
Runat="server" />
<asp:Button
id="btnSelect"
Text="Select"
Runat="server" OnClick="btnSelect_Click" />
<asp:ObjectDataSource
id="srcCultures"
TypeName="System.Globalization.CultureInfo"
SelectMethod="GetCultures"
Runat="server">
<SelectParameters>
<asp:Parameter Name="types" DefaultValue="SpecificCultures" />
</SelectParameters>
</asp:ObjectDataSource>
<hr />
Today"s date is:
<br />
<asp:Label
id="lblDate"
Runat="server" />
<br /><br />
The price of the product is:
<br />
<asp:Label
id="lblPrice"
Runat="server" />
</div>
</form>
</body>
</html>
Page Culture (C#)
<%@ Page Language="C#" Culture="id-ID" UICulture="id-ID" %>
<script runat="server">
void Page_Load()
{
lblDate.Text = DateTime.Now.ToString("D");
lblPrice.Text = (512.33m).ToString("c");
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>Bagus</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Today"s date is:
<br />
<asp:Label
id="lblDate"
Runat="server" />
<hr />
The price of the product is:
<br />
<asp:Label
id="lblPrice"
Runat="server" />
</div>
</form>
</body>
</html>
Set culture in the web.config
<?xml version="1.0"?>
<configuration xmlns="http://schemas.microsoft.ru/.NetConfiguration/v2.0">
<system.web>
<anonymousIdentification enabled="true"/>
<profile>
<properties>
<add
name="UserCulture"
defaultValue="en-US" />
<add
name="UserUICulture"
defaultValue="en" />
</properties>
</profile>
</system.web>
</configuration>