Page.Culture Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the culture ID for the Thread object associated with the page.
protected:
property System::String ^ Culture { void set(System::String ^ value); };
public:
property System::String ^ Culture { System::String ^ get(); void set(System::String ^ value); };
protected string Culture { set; }
[System.ComponentModel.Browsable(false)]
public string Culture { get; set; }
member this.Culture : string
[<System.ComponentModel.Browsable(false)>]
member this.Culture : string with get, set
Protected Property Culture As String
Public Property Culture As String
Property Value
A valid culture ID.
- Attributes
Remarks
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 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.