明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

Asp Object 之:ContentType

[摘要]ContentTypeContentType 屬性指定響應的 HTTP 內(nèi)容類型。如果未指定 ContentType,默認為 text/HTML。語法Response.ContentType [= ContentType ] 參數(shù)ContentType 描述內(nèi)容類型的字符串。該字符串通常被格式化為...

ContentType

ContentType 屬性指定響應的 HTTP 內(nèi)容類型。如果未指定 ContentType,默認為 text/HTML。

語法

Response.ContentType [= ContentType ] 

參數(shù)

ContentType
描述內(nèi)容類型的字符串。該字符串通常被格式化為類型/子類型,其中類型是常規(guī)內(nèi)容范疇而子類為特定內(nèi)容類型。有關支持內(nèi)容類型的完整列表,請參閱 Web 瀏覽器文檔或當前的 HTTP 規(guī)格說明。

示例

下面的示例將內(nèi)容類型設置為 Channel Definition Format(CDF)。

<% Response.ContentType = "application/x-cdf" %> 

下面的示例將 ContentType 屬性設置為其他的常見值。

<% Response.ContentType = "text/HTML" %><% Response.ContentType = "image/GIF" %><% Response.ContentType = "image/JPEG" %> 

應用于

Response 對象