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

📄 picture.asp

📁 本源文件中包含内容是ASP环境下实现图片的二进制存取以及一个按纽提交两个表单的方法
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<% option explicit%>
<%Response.Buffer=True%>
<!--#Include file="odbc_conn.asp"-->
<html> 
<head> 
<meta http-equiv="content-type" content="text/html;charset=gb2312"> 
<title>输出单独图片</title> 
</head> 
<body > 
<%
  Dim ID
  Dim rs
  Dim sql 
  ID=Request("ID")
  sql="select * from Picture where ID=" &ID
  set rs=conn.execute(sql) 
  if rs.eof then
     Response.Write "对不起!在我们的数据库里没有您要找的资料!"
  else%> 
<img src="jpg.asp?ID=<%= ID %>">
<%  end if
  rs.close 
  set rs=nothing 
  conn.close 
  set conn=nothing 
%> 
</BODY> 
</HTML>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -