Page.ContentType 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 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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.