📄 photodown.asp
字号:
<!--#include file="conn.asp" -->
<%
id=request.QueryString("id")
if id<>"" then
set rs=server.CreateObject("adodb.recordset")
sql="select * from photo where id="&id
rs.open sql,conn,3,3
rs("hit")=rs("hit")+1
rs.update
picurl=rs("picurl")
rs.close
set rs=nothing
response.Redirect(""&picurl&"")
'response.Redirect("http://"&weburl&"/"&picurl&"")
end if
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -