不同的ContentType 会影响客户端所看到的效果.默认的ContentType为 text/html 也就是网页格式.
代码如:
<% response.ContentType ="text/html" %>
<!--#i nclude virtual="/ContentType.html" -->
显示的为网页,而
<% response.ContentType ="text/plain" %>
<!--#i nclude virtual="/sscript/ContentType.html" -->
则会显示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" -->
MICROSOFT POWERPOINT document
<% response.ContentType ="application/ms-powerpoint" %>
<!--#i nclude virtual="/myfile.pff" -->
PDF document
<% response.ContentType ="application/pdf" %>
<!--#i nclude virtual="/myfile.pdf" -->
ZIP document
<% response.ContentType ="application/zip" %>
<!--#i nclude virtual="/myfile.zip" -->
RAR document
Response.ContentType = "application/x-msdownload ; Charset=utf-8";
Response.AddHeader("Content-Disposition", "attachment; filename=...");
下面是更详细的ContentType
前边为Type 后边为相应类型,只需要TYPE就可以.
application/andrew-inset ez
application/mac-binhex40 hqx
application/mac-compactpro cpt
application/mathml+xml mathml
application/msword doc
application/octet-stream bin dms lha lzh exe class so dll
application/oda oda
application/ogg ogg
application/pdf pdf
application/postscript ai eps ps
application/rdf+xml rdf
application/smil smi smil
application/srgs gram
application/srgs+xml grxml
application/vnd.mif mif
application/vnd.mozilla.xul+xml xul
application/vnd.ms-excel xls
application/vnd.ms-powerpoint ppt
application/vnd.wap.wbxml wbxml
application/vnd.wap.wmlc .wmlc wmlc
application/vnd.wap.wmlscriptc .wmlsc wmlsc
application/voicexml+xml vxml
application/x-bcpio bcpio
application/x-cdlink vcd
application/x-chess-pgn pgn
application/x-cpio cpio
application/x-csh csh
application/x-director dcr dir dxr
application/x-dvi dvi
application/x-futuresplash spl
application/x-gtar gtar
application/x-hdf hdf
application/x-httpd-php .php .php4 .php3 .phtml
application/x-httpd-php-source .phps
application/x-javascript js
application/x-koan skp skd skt skm
application/x-latex latex
application/x-netcdf nc cdf
application/x-pkcs7-crl .crl
application/x-sh sh
application/x-shar shar
application/x-shockwave-flash swf
application/x-stuffit sit
application/x-sv4cpio sv4cpio
application/x-sv4crc sv4crc
application/x-tar .tgz tar
application/x-tcl tcl
application/x-tex tex
application/x-texinfo texinfo texi
application/x-troff t tr roff
application/x-troff-man man
application/x-troff-me me
application/x-troff-ms ms
application/x-ustar ustar
application/x-wais-source src
application/x-x509-ca-cert .crt
application/xhtml+xml xhtml xht
application/xml xml xsl
application/xml-dtd dtd
application/xslt+xml xslt
application/zip zip
audio/basic au snd
audio/midi mid midi kar
audio/mpeg mpga mp2 mp3
audio/x-aiff aif aiff aifc
audio/x-mpegurl m3u
audio/x-pn-realaudio ram rm
audio/x-pn-realaudio-plugin rpm
audio/x-realaudio ra
audio/x-wav wav
chemical/x-pdb pdb
chemical/x-xyz xyz
image/bmp bmp
image/cgm cgm
image/gif gif
image/ief ief
image/jpeg jpeg jpg jpe
image/png png
image/svg+xml svg
image/tiff tiff tif
image/vnd.djvu djvu djv
image/vnd.wap.wbmp .wbmp wbmp
image/x-cmu-raster ras
image/x-icon ico
image/x-portable-anymap pnm
image/x-portable-bitmap pbm
image/x-portable-graymap pgm
image/x-portable-pixmap ppm
image/x-rgb rgb
image/x-xbitmap xbm
image/x-xpixmap xpm
image/x-xwindowdump xwd
model/iges igs iges
model/mesh msh mesh silo
model/vrml wrl vrml
text/calendar ics ifb
text/css css
text/html .shtml html htm
text/plain asc txt
text/richtext rtx
text/rtf rtf
text/sgml sgml sgm
text/tab-separated-values tsv
text/vnd.wap.wml .wml wml
text/vnd.wap.wmlscript .wmls wmls
text/x-setext etx
video/mpeg mpeg mpg mpe
video/quicktime qt mov
video/vnd.mpegurl mxu
video/x-msvideo avi
video/x-sgi-movie movie
x-conference/x-cooltalk ice
本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/wuhongyao3/archive/2009/05/07/4157576.aspx
分享到:
相关推荐
ASP.NET 中 Response.ContentType 类型汇总 ASP.NET 中的 Response.ContentType 属性用于确定输出的文件类型,告诉浏览器如何处理服务器返回的数据。不同的文件类型对应不同的 ContentType,今天我们来总结 ASP...
### jsp response.sendRedirect不跳转的原因分析及解决 #### 一、问题背景 在进行Web应用开发的过程中,经常需要使用到服务器端重定向的技术。在Java Server Pages (JSP) 技术中,`response.sendRedirect()` 是一...
Response.ContentType = "application/json" ``` 3. **重定向页面**:`Response.Redirect`方法可以将用户重定向到另一个URL。这在页面跳转或错误处理时非常有用: ```vbscript Response.Redirect "error_page....
本文将详细介绍如何确保通过`Response.Redirect`方法传递的汉字能够被正确接收。 #### 一、问题分析 当使用`Response.Redirect`方法传递包含汉字的参数时,最常见的问题是接收端获取到的参数变为乱码。这主要是...
#### 五、更详细的ContentType列表 除了上述提到的常用ContentType外,还有一些其他的类型,例如: - **ez (application/andrew-inset)** - **hqx (application/mac-binhex40)** - **cpt (application/mac-...
http中的contentType和responseType: contentType的主要类型和responseType的类型
在处理不同类型的文件或数据时,正确设置 `Response.ContentType` 是确保内容能够被客户端正确识别和处理的关键步骤。开发人员需要根据实际发送的数据类型来调整这个属性,以确保最佳的用户体验。
Response.ContentType = "application/x-zip-compressed"; Response.AddHeader("Content-Disposition", "attachment;filename=z.zip"); string filename = Server.MapPath("DownLoad/aaa.zip"); Response....
此外,还应注意`Response.ContentType`属性,它用于设置输出流的MIME类型,如`text/html`、`text/xml`等,这影响了浏览器如何处理接收到的数据。例如,设置为`text/xml`时,IE6及更高版本会以XML的树状视图显示内容...
在这里,`Response.ContentType` 被设置为 `"application/vnd.ms-excel"`,这使得浏览器识别输出为 Excel 文件,并提示用户下载。`Response.AppendHeader` 用于设置附件的文件名,而 `Response.ContentEncoding` ...
本文将详细介绍`Response`对象的集合、属性和方法,帮助你更好地理解和利用这一工具。 **集合** 1. **Cookies**: `Response.Cookies`集合允许开发者创建、读取或修改HTTP Cookie。Cookie是服务器发送到用户浏览器...
Response.ContentType = "Application/msword"; string s = Server.MapPath("C#语言参考.doc"); Response.WriteFile("C#语言参考.doc"); Response.Write(s); Response.Flush(); Response.Close(); ``` - ...
在上面的代码中,我们设置了Response.ContentType为application/ms-excel,以便将数据作为Excel文件发送到客户端。 Excel文件 Excel文件是一种常用的电子表格文件格式,广泛应用于数据分析和处理。Excel文件可以...
这可以通过`Response.ContentType`属性来完成。例如,要创建一个Word文档,应设置文件类型为“application/msword”。 ##### 2.2 设置文件名 接下来,我们需要告诉浏览器文件的名称以及如何处理该文件。这可以通过...
需要注意的是,在输出图片数据之前,需要设置`Response.ContentType`为正确的图片格式,以便浏览器能够正确解析并显示图片。 #### MIME类型的设置 除了处理图片数据之外,我们还需要了解如何设置MIME类型。MIME...
Response.ContentType = "Application/msword"; string s = Server.MapPath("C#语言参考.doc"); Response.WriteFile("C#语言参考.doc"); Response.Write(s); Response.Flush(); Response.Close(); ``` **第二种...
此外,`Response.ContentType`属性是关键,它可以设置为不同的MIME类型来输出不同类型的文件,例如图片、Word文档等。在这个例子中,`"application/vnd.ms-excel"`用于表示Excel文件。 对于更复杂的Excel操作,如...