zoom.asp
资源名称:1.rar [点击查看]
上传用户:ziqing_518
上传日期:2022-08-09
资源大小:446k
文件大小:2k
源码类别:

多媒体编程

开发平台:

ASP/ASPX

  1. <!--#include file="db/user.asp" -->
  2. <!--#include file="config.asp" -->
  3. <%
  4. addess=strAddess_1
  5. name=request.querystring("name")'显示类别
  6. sortall=request.querystring("st")'显示分类号
  7. mCount=request.querystring("count")'显示数量
  8. mLongname=request.querystring("long")'显示的字符长度
  9. mClass=request.querystring("class")'显示类型
  10. Set rs = Server.CreateObject("ADODB.Recordset")
  11. rs.CursorType = adOpenStatic
  12. rs.CacheSize = cint(mCount)
  13. sql="select * from download"
  14. select case name
  15. case "new"
  16. if sortall<>"" then
  17. sql=sql&" where boolZhen=False and numSortcount="&sortall
  18. else
  19. sql=sql&" where boolZhen=False"
  20. end if
  21. sql=sql&" order by dateRtime desc"
  22. case "down"
  23. if sortall<>"" then
  24. sql=sql&" where boolZhen=False and numSortcount="&sortall
  25. else
  26. sql=sql&" where boolZhen=False"
  27. end if
  28. sql=sql&" order by numDowncount desc"
  29. case "day"
  30. sql=sql&" where boolZhen=False order by numDaydown desc"
  31. case "month"
  32. sql=sql&" where boolZhen=False order by numMonthdown desc"
  33. end select
  34. rs.OPEN sql, Conn,1,1
  35. if rs.eof then
  36. response.write("document.write('无内容')")
  37. else
  38. For absRecordNum = 1 to mCount
  39. numZid=rs("id")
  40. longname=rs("name")
  41. if len(longname)>mLongname then
  42. longname=left(longname,mLongname) & "..."
  43. end if
  44. strZbig=rs("strBig")
  45. strZsort=rs("strSort")
  46. dateZtime=rs("dateRtime")
  47. numZday=rs("numDaydown")
  48. numZmonth=rs("numMonthdown")
  49. numZdown=rs("numDowncount")
  50. numZcount=rs("numCounters")
  51. numZsort=rs("numSortcount")
  52. if mClass="1" then
  53. response.write("document.write('<li><a href="""&addess&"show.asp?id="&numZid&""" title="""&longname&" - "&strZbig&"|"&strZsort&" "&dateZtime&"<br>今:"&numZday&" 周:"&numZmonth&" 总:"&numZdown&" 浏:"&numZcount&""" target=_blank>"&longname&"</a>');")
  54. else
  55. response.write("document.write('<li>[<a href="""&addess&"list.asp?type="&numZsort&""">"&strZsort&"</a>] <a href="""&addess&"show.asp?id="&numZid&""" title="""&longname&" - "&strZbig&"|"&strZsort&" "&dateZtime&"<br>今:"&numZday&" 周:"&numZmonth&" 总:"&numZdown&" 浏:"&numZcount&""" target=_blank>"&longname&"</a>');")
  56. end if
  57. rs.movenext
  58. If rs.EOF Then  
  59. Exit For  
  60. End If  
  61. Next
  62. end if
  63. rs.close
  64. set rs=nothing
  65. %>