📄 showimg.asp
字号:
<!--#include file="../config.ini" -->
<%
id=request("id")
set cnnDB=Server.CreateObject("ADODB.Connection")
strCon=connstring
cnnDB.Open strCon
Set rstObj=Server.CreateObject("ADODB.Recordset")
strsql="select * from printsetup where id='"&id&"'"
rstobj.open strsql,cnndb,1,1
Response.ContentType = "image/*"
Response.BinaryWrite rstobj("image").getChunk(7500000)
rstobj.close
set rstobjc=nothing
cnndb.Close
set cnndb=nothing
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -