.NET Framework Class Library
Page..::.Culture Property

This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.

Sets the culture ID for the Thread object associated with the page.

Namespace:  System.Web.UI
Assembly:  System.Web (in System.Web.dll)
Syntax

Visual Basic (Declaration)
<BrowsableAttribute(False)> _
Public Property Culture As String
Visual Basic (Usage)
Dim instance As Page
Dim value As String

value = instance.Culture

instance.Culture = value
C#
[BrowsableAttribute(false)]
public string Culture { get; set; }
Visual C++
[BrowsableAttribute(false)]
public:
property String^ Culture {
    String^ get ();
    void set (String^ value);
}
JScript
public function get Culture () : String
public function set Culture (value : String)
ASP.NET
<asp:Page Culture="String" />

Property Value

Type: System..::.String
A valid culture ID.
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 (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.

Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
See Also

Reference

Tags :


Page view tracker