HttpResponse.ContentType 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定輸出資料流的 HTTP MIME 類型。
public:
property System::String ^ ContentType { System::String ^ get(); void set(System::String ^ value); };
public string ContentType { get; set; }
member this.ContentType : string with get, set
Public Property ContentType As String
屬性值
輸出資料流的 HTTP MIME 類型。 預設值為 "text/html
"。
例外狀況
ContentType 屬性設定為 null
。
範例
下列範例會設定 ContentType image/jpeg 回應的屬性、呼叫 Clear 方法來移除可能附加至回應的其他內容,然後將 屬性設定 BufferOutput 為 true,以便在任何內容傳送至要求用戶端之前處理完整的頁面。
如需完整範例,請參閱 HttpResponse 類別。
// Set the page's content type to JPEG files
// and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg";
Response.Clear();
// Buffer response so that page is sent
// after processing is complete.
Response.BufferOutput = true;
' Set the page's content type to JPEG files
' and clears all content output from the buffer stream.
Response.ContentType = "image/jpeg"
Response.Clear()
' Buffer response so that page is sent
' after processing is complete.
Response.BufferOutput = True