📄 hits.asp
字号:
<!--#include file="config.asp" -->
<%
Dim softid,AllHits,DayHits,WeekHits,MonthHits,stype
Dim Rs,SQL
If Not IsNumeric(Request.QueryString("SoftID")) And Request.QueryString("SoftID") <> "" then
Response.write"错误的系统参数!ID必须是数字"
Response.End
Else
softid = CLng(Request.QueryString("SoftID"))
End If
stype = CLng(Request.querystring("type"))
SQL="select AllHits,DayHits,WeekHits,MonthHits,HitsTime from NC_SoftList where softid = " & softid
Set Rs = Newasp.Execute(SQL)
If Not (Rs.BOF And Rs.EOF) Then
AllHits = Rs("AllHits")
DayHits = Rs("DayHits")
WeekHits = Rs("WeekHits")
MonthHits = Rs("MonthHits")
End If
Rs.Close
Set Rs = Nothing
CloseConn
If stype = 1 Then
Response.Write "var oHits=document.getElementById(""downhits"");" & vbNewLine
Response.Write "if (oHits!=null) {" & vbNewLine
Response.Write "oHits.innerHTML="& Chr(34) & " 本日下载:" & DayHits & " 本周下载:" & WeekHits & " 本月下载:" & MonthHits & " 总共下载:" & AllHits & " " & Chr(34) &";" & vbNewLine
Response.Write "}" & vbNewLine
Else
Response.Write "document.write (" & Chr(34) & " 本日下载:" & DayHits & " 本周下载:" & WeekHits & " 本月下载:" & MonthHits & " 总共下载:" & AllHits & " " & Chr(34) & ");"
End If
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -