📄 showimg.asp.bak
字号:
<!--#include file="../Include/conn.asp"-->
<%
Set rs=server.createobject("adodb.recordset")
Dim inStage
intStage=request.querystring("stage")
If intStage=1 then
strsql="select images from save_image"
ElseIf intStage=2 then
strsql="select * from all_image where image_id=1 "
End if
rs.open strsql,conn,1,1
response.contenttype="image/*"
response.binarywrite rs("images").getchunk(7500000)
rs.close
conn.close
Set rs=nothing
Set conn=nothing
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -