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...
### jsp response.sendRedirect不跳转的原因分析及解决 #### 一、问题背景 在进行Web应用开发的过程中,经常需要使用到服务器端重定向的技术。在Java Server Pages (JSP) 技术中,`response.sendRedirect()` 是一...
Response.ContentType = "application/json" ``` 3. **重定向页面**:`Response.Redirect`方法可以将用户重定向到另一个URL。这在页面跳转或错误处理时非常有用: ```vbscript Response.Redirect "error_page....
http中的contentType和responseType: contentType的主要类型和responseType的类型
以上代码将会使浏览器直接显示包含在`ContentType.html`文件中的HTML源代码,而不是渲染成网页。 #### 四、常见ContentType及其应用 下面列举了一些常见的ContentType及其应用场景: 1. **图像文件** - **GIF ...
### 如何用Response.Redirect方法传递汉字 在ASP.NET开发中,使用`Response.Redirect`方法进行页面跳转并传递参数是一种常见的做法。然而,在实际应用中,可能会遇到通过该方法传递包含汉字的参数时出现乱码或字符...
"ASP.NET C#实现下载文件的六种方法实例" 在ASP.NET编程中,下载文件是非常常见的需求,例如下载...我们可以看到六种使用C#在ASP.NET中实现下载文件的方法,每种方法都有其优缺,你可以根据实际情况选择合适的方法。
在上面的代码中,我们设置了Response.ContentType为application/ms-excel,以便将数据作为Excel文件发送到客户端。 Excel文件 Excel文件是一种常用的电子表格文件格式,广泛应用于数据分析和处理。Excel文件可以...
在Asp.net编程中,了解`Response.Charset`与`Response.ContentEncoding`的区别至关重要,因为它们直接影响着网页内容的编码和解码过程,从而影响到客户端的正确显示。以下是对这两个属性的详细解释: 1. **Response...
5. **ContentType**: `Response.ContentType`属性定义了发送到客户端的HTTP响应的内容类型,如`"text/html"`(HTML)、`"image/jpeg"`(JPEG图像)等,这对于正确呈现内容至关重要。 6. **Expires**: `Response....
在这里,`Response.ContentType` 被设置为 `"application/vnd.ms-excel"`,这使得浏览器识别输出为 Excel 文件,并提示用户下载。`Response.AppendHeader` 用于设置附件的文件名,而 `Response.ContentEncoding` ...
《金鹰asp超速入门视频教程-044.Response属性.rar》是一份专门针对ASP初学者的教程资源,旨在帮助用户快速理解并掌握ASP(Active Server Pages)编程中的Response对象及其属性。ASP是一种广泛应用于网站开发的服务器...
第一种和第二种方法都是通过`Response`对象直接将Word文档写入HTTP响应,供客户端下载或查看。这些方法适用于直接打开或下载文件,不涉及内容处理。 - 第一种方法: ```csharp Response.ClearContent(); ...
同时,使用 Response.ContentType 属性指定文件的类型,然后使用 Response.WriteFile 方法将文件发送到客户端。 2. 文件下载的实现 文件下载的实现需要使用 TRY-CATCH 语句来捕捉可能出现的异常。例如,在下载文件...
Response.ContentType = "application/vnd.ms-excel"; this.EnableViewState = false; ``` 这里,`ContentType`被设置为`"application/vnd.ms-excel"`,这告诉浏览器将以Excel文件格式处理输出,从而触发下载对话框...
总结来说,response.sendRedirect()的正确使用需要确保在重定向之前没有输出任何内容到客户端,并且在重定向后不要有其他逻辑处理。同时,还需要注意重定向地址的正确性、浏览器和服务器的缓存问题以及可能的安全...
这可以通过`Response.ContentType`属性来完成。例如,要创建一个Word文档,应设置文件类型为“application/msword”。 ##### 2.2 设置文件名 接下来,我们需要告诉浏览器文件的名称以及如何处理该文件。这可以通过...