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>
Related examples in the same category