show.asp
来自「BBS源代码网上到处都是, 实现语言也不尽相同, 本人上传的BBSExample」· ASP 代码 · 共 30 行
ASP
30 行
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<% option explicit%>
<%Response.Buffer=True%>
<!--#Include file="odbc_conn.asp"-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="image/*">
<title></title>
</head>
<body>
<%
Dim sql
Dim rs
Dim showid
showid=Request("id")
Response.Expires = 0
Response.Buffer = TRUE
Response.Clear
Response.ContentType = "image/*" ' or "IMAGE/GIF"
sql="select * from photo where id=" &showid
set rs=conn.execute(sql)
Response.BinaryWrite rs("photo")
'Session.Abandon
'Response.End
%>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?