`

文件格式及相关的response.contentType

阅读更多
转自:http://blog.sina.com.cn/s/blog_64a692be0100hrev.html
Response.ContentType 名称 类型
ai application/postscript
aif audio/x-aiff
aifc audio/x-aiff
aiff audio/x-aiff
asc text/plain
au audio/basic
avi video/x-msvideo
bcpio application/x-bcpio
bin application/octet-stream
bmp image/bmp
cdf application/x-netcdf
class application/octet-stream
cpio application/x-cpio
cpt application/mac-compactpro
csh application/x-csh
css text/css
dcr application/x-director
dir application/x-director
djv image/vnd.djvu
djvu image/vnd.djvu
dll application/octet-stream
dms application/octet-stream
doc application/msword
dvi application/x-dvi
dxr application/x-director
eps application/postscript
etx text/x-setext
exe application/octet-stream
ez application/andrew-inset
gif image/gif
gtar application/x-gtar
hdf application/x-hdf
hqx application/mac-binhex40
htm text/html
html text/html
ice x-conference/x-cooltalk
ief image/ief
iges model/iges
igs model/iges
jpe image/jpeg
jpeg image/jpeg
jpg image/jpeg
js application/x-javascript
kar audio/midi
latex application/x-latex
lha application/octet-stream
lzh application/octet-stream
m3u audio/x-mpegurl
man application/x-troff-man
me application/x-troff-me
mesh model/mesh
mid audio/midi
midi audio/midi
mif application/vnd.mif
mov video/quicktime
movie video/x-sgi-movie
mp2 audio/mpeg
mp3 audio/mpeg
mpe video/mpeg
mpeg video/mpeg
mpg video/mpeg
mpga audio/mpeg
ms application/x-troff-ms
msh model/mesh
mxu video/vnd.mpegurl
nc application/x-netcdf
oda application/oda
pbm image/x-portable-bitmap
pdb chemical/x-pdb
pdf application/pdf
pgm image/x-portable-graymap
pgn application/x-chess-pgn
png image/png
pnm image/x-portable-anymap
ppm image/x-portable-pixmap
ppt application/vnd.ms-powerpoint
ps application/postscript
qt video/quicktime
ra audio/x-realaudio
ram audio/x-pn-realaudio
ras image/x-cmu-raster
rgb image/x-rgb
rm audio/x-pn-realaudio
roff application/x-troff
rpm audio/x-pn-realaudio-plugin
rtf text/rtf
rtx text/richtext
sgm text/sgml
sgml text/sgml
sh application/x-sh
shar application/x-shar
silo model/mesh
sit application/x-stuffit
skd application/x-koan
skm application/x-koan
skp application/x-koan
skt application/x-koan
smi application/smil
smil application/smil
snd audio/basic
so application/octet-stream
spl application/x-futuresplash
src application/x-wais-source
sv4cpio application/x-sv4cpio
sv4crc application/x-sv4crc
swf application/x-shockwave-flash
t application/x-troff
tar application/x-tar
tcl application/x-tcl
tex application/x-tex
texi application/x-texinfo
texinfo application/x-texinfo
tif image/tiff
tiff image/tiff
tr application/x-troff
tsv text/tab-separated-values
txt text/plain
ustar application/x-ustar
vcd application/x-cdlink
vrml model/vrml
wav audio/x-wav
wbmp image/vnd.wap.wbmp
wbxml application/vnd.wap.wbxml
wml text/vnd.wap.wml
wmlc application/vnd.wap.wmlc
wmls text/vnd.wap.wmlscript
wmlsc application/vnd.wap.wmlscriptc
wrl model/vrml
xbm image/x-xbitmap
xht application/xhtml+xml
xhtml application/xhtml+xml
xls application/vnd.ms-excel
xml text/xml
xpm image/x-xpixmap
xsl text/xml
xwd image/x-xwindowdump
xyz chemical/x-xyz
zip application/zip
分享到:
评论

相关推荐

    asp.net下Response.ContentType类型汇总

    ASP.NET 中的 Response.ContentType 属性用于确定输出的文件类型,告诉浏览器如何处理服务器返回的数据。不同的文件类型对应不同的 ContentType,今天我们来总结 ASP.NET 中 Response.ContentType 的各种类型。 ...

    金鹰asp超速入门视频教程-063.使用Response...总结.rar

    Response.ContentType = "application/json" ``` 3. **重定向页面**:`Response.Redirect`方法可以将用户重定向到另一个URL。这在页面跳转或错误处理时非常有用: ```vbscript Response.Redirect "error_page....

    关于asp.net的ContentType输出格式

    <% Response.ContentType = "text/plain"; %> <!--#includevirtual="/sscript/ContentType.html"--> ``` 以上代码将会使浏览器直接显示包含在`ContentType.html`文件中的HTML源代码,而不是渲染成网页。 #### 四...

    如何用Response.Redirect方法传递汉字

    无论是通过URL编码解码的方式,还是修改Web.Config文件中的编码格式,亦或是对接收端的数据进行额外的编码转换,都能有效地解决汉字传递过程中的乱码问题。开发者可以根据实际情况选择最适合的解决方案。 以上方法...

    文件下载及web文件的contentType类型大全

    ### 文件下载及Web文件的ContentType类型详解 在Web开发中,处理文件下载是常见的需求之一。为了确保用户能够正确地下载文件并且浏览器能够正确解析文件类型,开发者需要正确设置HTTP响应头中的`Content-Type`字段...

    【ASP.NET编程知识】asp.net C#实现下载文件的六种方法实例.docx

    这个方法使用Response对象的WriteFile方法分块将文件传输到客户端,避免了大文件下载时的性能问题。 方法四:使用FileStream实现下载 ```csharp string fileName = "aaa.zip";//客户端保存的文件名 string filePath...

    C#利用Response流将数据库数据导出成Excel

    在上面的代码中,我们设置了Response.ContentType为application/ms-excel,以便将数据作为Excel文件发送到客户端。 Excel文件 Excel文件是一种常用的电子表格文件格式,广泛应用于数据分析和处理。Excel文件可以...

    C# 四种实现文件下载

    在上面的代码中,我们首先设置了 Response 对象的 ContentType 和 ContentDisposition,分别表示文件的类型和保存的文件名。然后,我们使用 TransmitFile 方法来下载文件。 二、WriteFile 实现下载 WriteFile 是另...

    【ASP.NET编程知识】ASP.NET实现从服务器下载文件问题处理.docx

    同时,使用 Response.ContentType 属性指定文件的类型,然后使用 Response.WriteFile 方法将文件发送到客户端。 2. 文件下载的实现 文件下载的实现需要使用 TRY-CATCH 语句来捕捉可能出现的异常。例如,在下载文件...

    asp.net读word.doc

    获取上传文件的相关逻辑 // ... // 将Word转换为HTML的逻辑 } ``` 以上是ASP.NET中读取和处理Word文档的基本方法。实际应用中可能需要根据需求进行调整,例如添加错误处理、优化性能、支持多种文件格式等。对于...

    NET四种文件下载方式

    Response.ContentType = "application/x-zip-compressed"; Response.AddHeader("Content-Disposition", "attachment;filename=keji.rar"); string filename = Server.MapPath("keji.rar"); Response....

    Asp.net中Response.Charset与Response.ContentEncoding区别示例分析

    例如,`Response.ContentEncoding = System.Text.Encoding.GetEncoding("gb2312")`会把输出内容编码为GBK(GB2312)格式。当设置`Response.ContentEncoding`时,如果没有显式设置`Response.Charset`,那么`Response....

    用C#语言从服务器下载文件

    这段代码展示了如何使用`Response.TransmitFile`方法来下载一个ZIP格式的文件。`Response.TransmitFile`是ASP.NET中用于高效传输大文件的函数,它直接将文件从硬盘传输到客户端,避免了文件先加载到内存中的过程,...

    如何将图片转换成二进制存储

    需要注意的是,在输出图片数据之前,需要设置`Response.ContentType`为正确的图片格式,以便浏览器能够正确解析并显示图片。 #### MIME类型的设置 除了处理图片数据之外,我们还需要了解如何设置MIME类型。MIME...

    导出excel

    在这里,`Response.ContentType` 被设置为 `"application/vnd.ms-excel"`,这使得浏览器识别输出为 Excel 文件,并提示用户下载。`Response.AppendHeader` 用于设置附件的文件名,而 `Response.ContentEncoding` ...

    C# 将数据导出到Execl汇总(很全面).doc

    此外,`Response.ContentType`属性是关键,它可以设置为不同的MIME类型来输出不同类型的文件,例如图片、Word文档等。在这个例子中,`"application/vnd.ms-excel"`用于表示Excel文件。 对于更复杂的Excel操作,如...

    ResponseContentType_详细列表

    在处理不同类型的文件或数据时,正确设置 `Response.ContentType` 是确保内容能够被客户端正确识别和处理的关键步骤。开发人员需要根据实际发送的数据类型来调整这个属性,以确保最佳的用户体验。

    金鹰asp超速入门视频教程-044.Response属性.rar

    Response对象拥有众多属性和方法,使得开发者能够灵活地控制网页的输出内容和格式。本教程的第044部分可能涵盖了以下关于Response对象的知识点: 1. **Response.Buffer**:这是一个布尔属性,用于控制是否缓冲...

Global site tag (gtag.js) - Google Analytics