down.cs
上传用户:dbstep
上传日期:2022-08-06
资源大小:2803k
文件大小:14k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <%
  2. Function WebMenu(DataFrom,ID)
  3.   Dim rs,sql
  4.   Set rs=server.CreateObject("adodb.recordset")
  5.   sql="Select * From "&DataFrom&" where ParentID="&id&" and ViewFlag order by id"
  6.   rs.open sql,conn,1,1
  7.   response.write("<table width='150' border='0' cellspacing='0' cellpadding='0'>")
  8.   if id=0 and rs.bof and rs.eof then
  9.     response.write "<tr><td align='center'>暂无相关信息</td></tr>"
  10.   else
  11.     while not rs.eof
  12.       response.write "<tr class='WebMenu'><td width='24'><img src='../img/Arrow_03.gif' width='13' height='13'></td>"
  13.       response.write "<td><a href='DownList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a></td></tr>"
  14.       rs.movenext
  15. wend
  16.   end if
  17.   response.write("</table>")
  18.   rs.close
  19.   set rs=nothing
  20. end function
  21. Function WebLocation(ID)
  22.   Dim rs,sql,LocationText
  23.   Set rs=server.CreateObject("adodb.recordset")
  24.   sql="Select * From sk_DownSort where ViewFlag and ID="&ID
  25.   rs.open sql,conn,1,1
  26.   if rs.bof and rs.eof then
  27.     response.write "<img src='../img/Arrow_02.gif' align='absmiddle'>错误"
  28.     exit function
  29.   end if
  30.   LocationText="<img src='../img/Arrow_02.gif' align='absmiddle'><a href='DownList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a>"
  31.   if rs("ParentID")<>0 then WebLocation rs("ParentID")
  32.   response.write LocationText
  33. End Function
  34. function ChildSort()
  35.   dim ParentID
  36.   ParentID=request.QueryString("SortID")
  37.   if ParentID="" or (not isnumeric(ParentID)) then exit function
  38.   dim rs,sql
  39.   set rs = server.createobject("adodb.recordset")
  40.   sql="select * from sk_DownSort where ViewFlag and ParentID="&ParentID&" order by ID desc"
  41.   rs.open sql,conn,1,1
  42.   if rs.bof and rs.eof then
  43.     exit function
  44.   else
  45.     response.write "<tr><td height='22'></td><td class='ListTitle' align='center'>"
  46. while not rs.eof
  47. response.write "&nbsp;<font color='#FF0000'>|</font>&nbsp;<a href='DownList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a>&nbsp;<font color='#FF0000'>|</font>"
  48. rs.movenext
  49. wend
  50.     response.write "</td><td width='30'></td></tr>"    
  51.   end if
  52.   rs.close
  53.   set rs=nothing
  54. end function
  55. function ContentList()
  56.   dim SortPath
  57.       SortPath=request.QueryString("SortPath")
  58.   dim idCount'记录总数
  59.   dim pages'每页条数
  60.       pages=25
  61.   dim pagec'总页数
  62.   dim page'页码
  63.       page=clng(request("Page"))
  64.   dim pagenc'每页显示的分页页码数量=pagenc*2+1
  65.       pagenc=2
  66.   dim pagenmax'每页显示的分页的最大页码
  67.   dim pagenmin'每页显示的分页的最小页码
  68.   dim datafrom'数据表名
  69.       datafrom="sk_Download"
  70.   dim datawhere'数据条件
  71.       if SortPath<>"" then'是否查看的分类产品
  72.  datawhere="where ViewFlag and Instr(SortPath,'"&SortPath&"')>0 "
  73.       else
  74.  datawhere="where ViewFlag "
  75.   end if
  76.   dim sqlid'本页需要用到的id
  77.   dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
  78.       PATH_INFO = request.servervariables("PATH_INFO")
  79.   QUERY_STRING = request.ServerVariables("QUERY_STRING")'
  80.       if QUERY_STRING = "" then
  81.     Myself = PATH_INFO & "?"
  82.   elseif Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
  83.     Myself= PATH_INFO & "?" & QUERY_STRING & "&"
  84.   else
  85.     Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
  86.   end if
  87.   dim taxis'排序的语句 asc,desc
  88.       taxis="order by id desc "
  89.   dim i'用于循环的整数
  90.   dim rs,sql'sql语句
  91.   '获取记录总数
  92.   sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
  93.   set rs=server.createobject("adodb.recordset")
  94.   rs.open sql,conn,0,1
  95.   idCount=rs("idCount")
  96.   '获取记录总数
  97.   if(idcount>0) then'如果记录总数=0,则不处理
  98.     if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
  99.   pagec=int(idcount/pages)'获取总页数
  100.     else
  101.       pagec=int(idcount/pages)+1'获取总页数
  102.     end if
  103. '获取本页需要用到的id============================================
  104.     '读取所有记录的id数值,因为只有id所以速度很快
  105.     sql="select id from ["& datafrom &"] " & datawhere & taxis
  106.     set rs=server.createobject("adodb.recordset")
  107.     rs.open sql,conn,1,1
  108.     rs.pagesize = pages '每页显示记录数
  109.     if page < 1 then page = 1
  110.     if page > pagec then page = pagec
  111.     if pagec > 0 then rs.absolutepage = page  
  112.     for i=1 to rs.pagesize
  113.   if rs.eof then exit for  
  114.   if(i=1)then
  115.     sqlid=rs("id")
  116.   else
  117.     sqlid=sqlid &","&rs("id")
  118.   end if
  119.   rs.movenext
  120.     next
  121.   '获取本页需要用到的id结束============================================
  122.   end if
  123.   Response.Write "<table width='100%' border='0' cellspacing='0' cellpadding='0'>"
  124.   if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
  125.     '用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
  126.     sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
  127.     set rs=server.createobject("adodb.recordset")
  128.     rs.open sql,conn,0,1
  129.     while not rs.eof '填充数据到表格
  130.   Response.Write "<tr  height=25 bgcolor=#F0F0F0>" & vbCrLf
  131.       Response.Write "<td width='400' ><FONT style='FONT-SIZE: 10px; COLOR: #61A5DC; FONT-FAMILY: Webdings'>4</FONT>&nbsp;<a href='DownView.asp?ID="&rs("ID")&"&SortID="&rs("SortID")&".html'><font color=0066cc><b>"&rs("DownName")&"</b></font></a></td>" & vbCrLf
  132.       Response.Write "<td width='104' ><font color=0066cc>大小:"&rs("FileSize")&"M</font></td>" & vbCrLf
  133.   Response.Write "<td width='90'><font color=0066cc>点击数:"&rs("ClickNumber")&"</font></td>" & vbCrLf
  134.       Response.Write "</tr>" & vbCrLf
  135.   Response.Write "<tr>" & vbCrLf
  136.       Response.Write "<td  colspan='3' height=50><font color=red>软件简介:<br></font>"&cutStr(rs("content"),100)&"</td>" & vbCrLf
  137.       Response.Write "</tr>" & vbCrLf
  138.   rs.movenext
  139.     wend
  140.   else
  141.     response.write "<tr><td align='center'>暂无相关信息</td></tr></table>"
  142. exit function
  143.   end if
  144.   Response.Write "<tr>" & vbCrLf
  145.   Response.Write "<td colspan='3' align='right'>" & vbCrLf
  146.   Response.Write "共计:<font color='#ff6600'>"&idcount&"</font>条记录&nbsp;页次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&"&nbsp;每页:<font color='#ff6600'>"&pages&"</font>条&nbsp;&nbsp;&nbsp;&nbsp;" & vbCrLf
  147.   pagenmin=page-pagenc '计算页码开始值
  148.   pagenmax=page+pagenc '计算页码结束值
  149.   if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
  150.   if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a>&nbsp;") '如果页码大于1则显示(第一页)
  151.   if(pagenmin>1) then response.write ("<a href='"& myself &"Page="& page-(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>7</font></a>&nbsp;") '如果页码开始值大于1则显示(更前)
  152.   if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
  153.   for i = pagenmin to pagenmax'循环输出页码
  154. if(i=page) then
  155.   response.write ("&nbsp;<font color='#ff6600'>"& i &"</font>&nbsp;")
  156. else
  157.   response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
  158. end if
  159.   next
  160.   if(pagenmax<pagec) then response.write ("&nbsp;<a href='"& myself &"Page="& page+(pagenc*2+1) &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>8</font></a>&nbsp;") '如果页码结束值小于总页数则显示(更后)
  161.   if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a>") '如果页码小于总页数则显示(最后页)
  162.   Response.Write "</td>" & vbCrLf
  163.   Response.Write "</tr>" & vbCrLf
  164.   Response.Write "</table>" & vbCrLf
  165.   rs.close
  166.   set rs=nothing
  167. end function 
  168. %>
  169. <%
  170. if request.QueryString("ID")="" then
  171. SeoTitle="下载中心"
  172. elseif not IsNumeric(request.QueryString("ID")) then
  173. SeoTitle="参数错误"
  174. elseif conn.execute("select * from sk_Download Where ViewFlag and  ID="&request.QueryString("ID")).eof then
  175. SeoTitle="参数错误"
  176. else
  177. set rs = server.createobject("adodb.recordset")
  178. sql="select * from sk_Download where ViewFlag and ID="&request.QueryString("ID")
  179. rs.open sql,conn,1,1
  180. SeoTitle=rs("DownName")
  181. rs.close
  182. set rs=nothing
  183. end if
  184. %>
  185. <%
  186. Function WebMenu(DataFrom,ID)
  187.   Dim rs,sql
  188.   Set rs=server.CreateObject("adodb.recordset")
  189.   sql="Select * From "&DataFrom&" where ParentID="&id&" and ViewFlag order by id"
  190.   rs.open sql,conn,1,1
  191.   response.write("<table width='150' border='0' cellspacing='0' cellpadding='0'>")
  192.   if id=0 and rs.bof and rs.eof then
  193.     response.write "<tr><td align='center'>暂无相关信息</td></tr>"
  194.   else
  195.     while not rs.eof
  196.       response.write "<tr class='WebMenu'><td width='24'><img src='../img/Arrow_03.gif' width='13' height='13'></td>"
  197.       response.write "<td><a href='DownList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a></td></tr>"
  198.       rs.movenext
  199. wend
  200.   end if
  201.   response.write("</table>")
  202.   rs.close
  203.   set rs=nothing
  204. end function
  205. Function WebLocation(ID)
  206.   Dim rs,sql,LocationText
  207.   Set rs=server.CreateObject("adodb.recordset")
  208.   sql="Select * From sk_DownSort where ViewFlag and ID="&ID
  209.   rs.open sql,conn,1,1
  210.   if rs.bof and rs.eof then
  211.     response.write "<img src='../img/Arrow_02.gif' align='absmiddle'>错误"
  212.     exit function
  213.   end if
  214.   LocationText="<img src='../img/Arrow_02.gif' align='absmiddle'><a href='DownList.asp?SortID="&rs("ID")&"&SortPath="&rs("SortPath")&"'>"&rs("SortName")&"</a>"
  215.   if rs("ParentID")<>0 then WebLocation rs("ParentID")
  216.   response.write LocationText
  217. End Function
  218. function WebContent()
  219.   dim ID
  220.   ID=request.QueryString("ID")
  221.   if ID="" or (not isnumeric(ID)) then
  222.     response.write "<div align='center'>数据读取异常错误</div>"
  223.     exit function
  224.   end if
  225.   dim rs,sql
  226.   set rs = server.createobject("adodb.recordset")
  227.   sql="select * from sk_Download where ViewFlag and ID="&ID
  228.   rs.open sql,conn,1,3
  229.   response.write"<table width='100%' border='0' cellspacing='0' cellpadding='0'>"
  230.   if rs.bof and rs.eof then
  231.     response.write "<tr><td>暂无相关信息</td></tr>"
  232.   else
  233.     response.write "<tr><td align='center' colspan='3' height=40><font style='font-size:14px;font-weight: bold;color: #ff0000'>"&rs("DownName")&"</font></td></tr>"
  234. response.write "<tr><td colspan='3'><hr width='100%' size='1' noshade='noshade' color='#CCCCCC'><br></td></tr>"
  235.     response.write "<tr><td width='300' class='ListDown'><b>运行平台:</b>"&rs("approof")&"</td>"
  236.     response.write "<td width='250'  class='ListDown'><b>软件评级:</b><img src='../img/star"&rs("star")&".gIf'></td>"
  237.     response.write "<td rowspan=4 width='200' align='center' >"
  238. if trim(rs("BigPic"))="" then
  239.     response.write "<img src=../img/Down.jpg ></td></tr>"
  240. else
  241. response.write "<img src="&rs("BigPic")&" width=140 height=140></td></tr>"
  242. end if
  243.     response.write "<tr><td class='ListDown'><b>文件大小:</b>"&rs("FileSize")&"</td>"
  244.     response.write "<td  class='ListDown'><b>软件语言:</b>"&rs("language")&"</td></tr>"
  245.     response.write "<tr><td width='300' class='ListDown'><b>软件授权:</b>"&rs("accmode")&"</td>"
  246.     response.write "<td width=250'  class='ListDown'><b>演示地址:</b>"&rs("SoftClass")&"</td></tr>" 
  247.     response.write "<tr><td class='ListDown'><b>下载次数:</b>"&rs("ClickNumber")&" 次</td>"
  248.     response.write "<td  class='ListDown'><b>发布时间:</b>"&rs("Addtime")&"</td></tr>"
  249. response.write "<tr><td colspan='3'><br><b>软件简介:</b></td></tr>"
  250. response.write "<tr><td colspan='3'><hr width='100%' size='1' noshade='noshade' color='#CCCCCC'></td></tr>"
  251. response.write "<tr><td colspan='3'>"&rs("Content")&"</td></tr>"
  252. rs("ClickNumber")=rs("ClickNumber")+1
  253. if ViewNoRight(rs("GroupID"),rs("Exclusive")) then
  254. response.write "<tr><td colspan='3'><br><b>下载地址:</b></td></tr>"
  255. response.write "<tr><td colspan='3'><hr width='100%' size='1' noshade='noshade' color='#CCCCCC'></td></tr>"
  256. response.write "<tr><td colspan='3' height=40><a href='"&rs("FileUrl")&"' target='_blank'><font color='red'><img src=../img/open.gif>下载地址一</font></a> <img src=../img/open.gif><a href='"&rs("SmallPic")&"' target='_blank'><font color='red'>下载地址二</font></a></td></tr>"
  257. else
  258.   response.write "<tr><td colspan='3'><hr width='100%' size='1' noshade='noshade' color='#CCCCCC'><div align='center'><img src='../img/NoRight.jpg'></div></td></tr>"
  259. end if
  260. rs.update
  261. rs.close
  262. response.write "<tr><td colspan='3'><hr width='100%' size='1' noshade='noshade' color='#CCCCCC'><br></td></tr>"
  263.     response.write "<tr><td colspan='3'>"
  264.   Dim IDmax,IDmin
  265.      IDmax=ID+1
  266. set rs = server.createobject("adodb.recordset")
  267. sql="select * from sk_Download where ViewFlag and ID="&IDmax
  268. rs.open sql,conn,1,1
  269. if not rs.eof then
  270.  Response.Write "上一篇:<a href='?id="&Idmax&"&SortID="&rs("SortID")&".html'>"&rs("DownName")&"</a><br>"
  271. else
  272. Response.Write "上一篇:暂无下载<br>"
  273. end if
  274. rs.close
  275. IDmin=ID-1
  276. set rs = server.createobject("adodb.recordset")
  277. sql="select * from sk_Download where ViewFlag and ID="&IDmin
  278. rs.open sql,conn,1,1
  279. if not rs.eof then
  280.  Response.Write "下一篇:<a href='?id="&IDmin&"&SortID="&rs("SortID")&".html'>"&rs("DownName")&"</a>"
  281. else
  282. Response.Write "下一篇:暂无下载"
  283. end if
  284. rs.close
  285. response.write "</td><td align='right'></td></tr>" 
  286.     response.write "<tr><td colspan='3' align='right'> <a onClick='history.go(0)'>【刷新页面】</a><a style='cursor:hand'  onclick='window.external.AddFavorite(location.href,document.title);' >【加入收藏】</a><A href='javascript:window.print();'>【打印此文】</A> <a onClick='window.self.close()'>【关闭窗口】</a></td></tr>"
  287.   end if
  288.   response.write"</table>"
  289.   set rs=nothing
  290. end function
  291. %>