ASP ContentType 属性

ContentType 属性为 response 对象设置 HTTP 内容类型。

语法:

  1. response.ContentType[=contenttype]
参数 描述
contenttype 描述内容类型的字符串。 如需完整的内容类型列表,请参阅您的浏览器文档或 HTTP 规范。

实例

如果 ASP 页面没有设置 ContentType 属性,那么默认的 content-type 头部是这样的:

  1. content-type:text/html

其他一些常用的 ContentType 值:

  1. <%response.ContentType="text/HTML"%>
  2. <%response.ContentType="image/GIF"%>
  3. <%response.ContentType="image/JPEG"%>
  4. <%response.ContentType="text/plain"%>
  5. <%response.ContentType="image/JPEG"%>

此例会在浏览器中打开一个 Excel 电子表格(如果用户已经安装了 Excel ):

  1. <%response.ContentType="application/vnd.ms-excel"%>
  2. <html>
  3. <body>
  4. <table>
  5. <tr>
  6. <td>1</td>
  7. <td>2</td>
  8. <td>3</td>
  9. <td>4</td>
  10. </tr>
  11. <tr>
  12. <td>5</td>
  13. <td>6</td>
  14. <td>7</td>
  15. <td>8</td>
  16. </tr>
  17. </table>
  18. </body>
  19. </html>