Page.ContentType Property

Definition

Sets the HTTP MIME type for the HttpResponse object associated with the page.

protected:
 property System::String ^ ContentType {  void set(System::String ^ value); };
public:
 property System::String ^ ContentType { System::String ^ get(); void set(System::String ^ value); };
protected string ContentType { set; }
[System.ComponentModel.Browsable(false)]
public string ContentType { get; set; }
member this.ContentType : string
[<System.ComponentModel.Browsable(false)>]
member this.ContentType : string with get, set
Protected Property ContentType As String
Public Property ContentType As String

Property Value

The HTTP MIME type associated with the current page.

Attributes

Remarks

In most circumstances, do not set this property in code. Set the ContentType attribute using the @ Page directive in the .aspx file. When the page is requested, the dynamically generated class sets the property.

Applies to

See also