Page.ContentType Property
.NET Framework 3.0
This property supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Sets the HTTP MIME type for the HttpResponse object associated with the page.
Namespace: System.Web.UIAssembly: System.Web (in system.web.dll)
'Declaration Public Property ContentType As String 'Usage Dim instance As Page Dim value As String value = instance.ContentType instance.ContentType = value
/** @property */ public String get_ContentType () /** @property */ public void set_ContentType (String value)
public function get ContentType () : String public function set ContentType (value : String)
Not applicable.
Property Value
The HTTP MIME type associated with the current page.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.
Community Additions
ADD
Show: