zoukankan
html css js c++ java
asp二进制输出图片的源代码
'
8*******************************************8
'
需要在你的服务器上安装 MDAC 2.6 或MDAC2.7
'
8*******************************************8
<
%
Dim
strFilePath, strFileSize, strFileName
Const
adTypeBinary
=
1
Response.Buffer
=
True
strFileName
=
"
logo.gif
"
FilePath
=
Server.MapPath(
"
manage/images/
"
&
strFileName)
Response.Clear
Set
objStream
=
Server.CreateObject(
"
ADODB.Stream
"
)
objStream.Open
objStream.Type
=
adTypeBinary
objStream.LoadFromFile FilePath
strFileSize
=
objStream.size
strFileType
=
lcase
(
Right
(strFileName,
4
))
'
文件扩展名
'
通过文件扩展名判断 Content-Types
Select
Case
strFileType
Case
"
.asf
"
ContentType
=
"
video/x-ms-asf
"
Case
"
.avi
"
ContentType
=
"
video/avi
"
Case
"
.doc
"
ContentType
=
"
application/msword
"
Case
"
.zip
"
ContentType
=
"
application/zip
"
Case
"
.xls
"
ContentType
=
"
application/vnd.ms-excel
"
Case
"
.gif
"
ContentType
=
"
image/gif
"
Case
"
.jpg
"
,
"
jpeg
"
ContentType
=
"
image/jpeg
"
Case
"
.wav
"
ContentType
=
"
audio/wav
"
Case
"
.mp3
"
ContentType
=
"
audio/mpeg3
"
Case
"
.mpg
"
,
"
mpeg
"
ContentType
=
"
video/mpeg
"
Case
"
.rtf
"
ContentType
=
"
application/rtf
"
Case
"
.htm
"
,
"
html
"
ContentType
=
"
text/html
"
Case
"
.asp
"
ContentType
=
"
text/asp
"
Case
Else
'
Handle All Other Files
ContentType
=
"
application/octet-stream
"
End
Select
'
Response.AddHeader "Content-Disposition", "attachment; filename= "&strFileName&""
Response.AddHeader
"
Content-Length
"
, strFileSize
Response.Charset
=
"
UTF-8
"
'
客户端浏览器的字符集UTF-8
Response.ContentType
=
ContentType
Response.BinaryWrite objStream.Read
Response.Flush
objStream.Close
Set
objStream
=
Nothing
%
>
查看全文
相关阅读:
jQuery插件开发——全屏切换插件
原生JS实现全屏切换以及导航栏滑动隐藏及显示——修改
CSS 3学习——animation动画
CSS 3学习——transition 过渡
CSS 3 学习——transform 3D转换渲染
CSS 3学习——transform 2D转换
消息过滤
jms消息组成
vim常用命令整理
知识碎片
原文地址:https://www.cnblogs.com/zzh/p/320470.html
最新文章
我的学习之路_第二十四章_form表单以及div+css
我的学习之路_第二十三章_HTML
我的学习之路_第二十二章_事务
我的学习之路_第二十一章_JDBC连接池
我的学习之路_第二十章_JDBC
我的学习之路_第十九章_SQL多表
JSON概述
git常用命令(基础)
浅谈本地服务器的搭建(XAMPP)
sublime常用插件分享
热门文章
首次git设置
git初接触
cordova之安卓如何更改应用程序在手机桌面显示的名字
cordova之配置安卓图标
cordova构建和运行应用程序(安卓)
cordova项目的创建
关于Cookie的知识的总结
scroll事件的优化以及scrollTop的兼容性
关于apply、call和bind的总结
mouseover、mouseout和mouseenter、mouseleave
Copyright © 2011-2022 走看看