HttpSessionState.CodePage Property

Definition

Gets or sets the character-set identifier for the current session.

public:
 property int CodePage { int get(); void set(int value); };
public int CodePage { get; set; }
member this.CodePage : int with get, set
Public Property CodePage As Integer

Property Value

The character-set identifier for the current session.

Remarks

A character set (code page) is used to interpret multi-byte character data, determining character value, and therefore sort order. Code-page settings apply only to multi-byte character data, not to Unicode character data.

This CodePage property is provided for compatibility with earlier versions of ASP only. If you do not need to maintain backward compatibility with ASP pages, use the ContentEncoding property instead.

Applies to

See also