⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 show.asp

📁 BBS源代码网上到处都是, 实现语言也不尽相同, 本人上传的BBSExample是自己做的, 符合课程设计的要求
💻 ASP
字号:
<%@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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -