服務(wù)熱線
153 8323 9821
不同的ContentType 會(huì)影響客戶端所看到的效果.默認(rèn)的ContentType為 text/html 也就是網(wǎng)頁格式.
代碼如:
<% response.ContentType ="text/html" %>
<!--#i nclude virtual="/ContentType.html" -->
顯示的為網(wǎng)頁
而
<% response.ContentType ="text/plain" %>
<!--#i nclude virtual="/sscript/ContentType.html" -->
則會(huì)顯示html原代碼.
以下為一些常用的 ContentType
GIF images
<% response.ContentType ="image/gif" %>
<!--#i nclude virtual="/myimage.gif" -->
JPEG images
<% response.ContentType ="image/jpeg" %>
<!--#i nclude virtual="/myimage.jpeg" -->
TIFF images
<% response.ContentType ="image/tiff" %>
<!--#i nclude virtual="/myimage.tiff" -->
MICROSOFT WORD document
<% response.ContentType ="application/msword" %>
<!--#i nclude virtual="/myfile.doc" -->
RTF document
<% response.ContentType ="application/rtf" %>
<!--#i nclude virtual="/myfile.rtf" -->
MICROSOFT EXCEL document
<% response.ContentType ="application/x-excel" %>
<!--#i nclude virtual="/myfile.xls" -->