📄 down.asp
字号:
<!--#include file="Inc/Conn.asp" -->
<!--#include file="Inc/Function.asp" -->
<%
ID=Request("ID")
if ID="" or not isnumeric(ID) then
Response.Redirect("DownLoad.asp")
end if
Set rs=server.CreateObject("adodb.recordset")
rs.open "select DownAddress,DNumber from DownLoad where ID="&ID,Conn,3,3
if not rs.eof then
DownAddress=rs("DownAddress")
rs("Dnumber")=rs("DNumber")+1
rs.update
end if
rs.close
set rs=nothing
Response.Redirect("Down/"&DownAddress)
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -