Page.Culture Property
Assembly: System.Web (in system.web.dll)
'Declaration Public Property Culture As String 'Usage Dim instance As Page Dim value As String value = instance.Culture instance.Culture = value
/** @property */ public String get_Culture () /** @property */ public void set_Culture (String value)
public function get Culture () : String public function set Culture (value : String)
Not applicable.
Property Value
A valid culture ID.Set the Culture attribute in the @ Page directive in the .aspx file. When the page is requested, the dynamically generated class sets the value of this property. In addition, you can also explicitly set the value of the Culture property programmatically or in the globalization Element (ASP.NET Settings Schema) of the Web.config file.
The Culture property is used to help localize page content. You can set it to any valid culture ID. For example, the en-us culture ID sets the page to American English, while the fr culture ID sets the page to French. You can also set the value to auto which will perform automatic detection of the browser's preferred language and set it. The automatic language detection can be qualified with a default value such as auto:en-us.
For more information, see the CultureInfo class overview.
| Topic | Location |
|---|---|
| How to: Set the Culture and UI Culture for ASP.NET Web Page Globalization | Building ASP .NET Web Applications |
| How to: Set the Culture and UI Culture for ASP.NET Web Page Globalization | Building ASP .NET Web Applications |