?? picture.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 + -