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

📄 down.asp

📁 狼道公司源码下载
💻 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 + -