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

📄 softcount.asp

📁 blue space 蓝色空间下载系统精简版---大家分享
💻 ASP
字号:
<!--#include file="../inc/HeadDH.asp" -->
<!--#include file="../inc/oConn.asp" -->
<%
Dim SoftID
SoftID = Request.QueryString("SoftID")
Call UpdateCount(SoftID)
Call SoftCount(SoftID)

Sub SoftCount(SoftID)
	On Error Resume Next
	Dim DownCount
	DownCount = oConn.Execute("Select SoftCount From SoftInfo Where SoftID="&SoftID&"")(0)
	Response.Write "document.write('"&DownCount&" 次');"
	If Err Then
		Err.Clear
	End If
End Sub

Sub UpdateCount(SoftID)
	On Error Resume Next
	oConn.Execute("Update SoftInfo Set SoftCount=SoftCount+1 Where SoftID="&SoftID&"")
	If Err Then
		Err.Clear
	End If
End Sub
%>

⌨️ 快捷键说明

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