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

多媒体编程

开发平台:

ASP/ASPX

  1. <%
  2. iperr()
  3. response.write("<center><br>"&_
  4. "<table border=0 cellpadding=3 cellspacing=0 style='border-collapse:collapse' bordercolor=#efefef width=735>"&_
  5. "<tr>"&_
  6. "<td valign=bottom nowrap>"&_
  7. "<img src=""../images/download.gif""> "&_
  8. "本类总数/影片总数:<font color=#FF0000><b>")
  9. numRstype=request.QueryString("type")
  10. sql="select count(*) as totles from download"
  11. if numRstype="" then
  12. strTch=request("TTYPE")
  13. strSearch=request("KEY")
  14. if strSearch<>"" then
  15. if strTch="BYNAME" then
  16. sql=sql&" where boolZhen=False and name like '%"&strSearch&"%'"
  17. else
  18. sql=sql&" where boolZhen=False and strShow like '%"&strSearch&"%'"
  19. end if
  20. else
  21. sql=sql&" where boolZhen=False"
  22. end if
  23. else
  24. sql=sql&" where boolZhen=False and numSortcount="&numRstype
  25. end if
  26. rs=conn.execute(sql)
  27. numTotle=rs("totles")
  28. response.write(numTotle)
  29. set rs=nothing
  30. response.write("</b>/<b>")
  31. sql="select count(*) as totles from download"
  32. rs=conn.execute(sql)
  33. numTotle=rs("totles")
  34. response.write(numTotle)
  35. set rs=nothing
  36. response.write("</b></font></td>")
  37. if boolSoftatt_1=true then
  38. response.write("<td valign=bottom nowrap>"&_
  39. "<img src='../images/zhen.gif' width=16 heigth=16 title='待认证影片数'> :"&_
  40. "<font color=#FF0000><b>")
  41. sql="select count(*) as totles from download where boolZhen=True"
  42. rs=conn.execute(sql)
  43. numTotle=rs("totles")
  44. response.write(numTotle)
  45. set rs=nothing
  46. response.write("</b></font></td>")
  47. end if
  48. response.write("<form method=POST action=list.asp>"&_
  49. "<td align=center valign=bottom nowrap>"&_
  50. "<img src='../images/search.gif' width=16 heigth=16> "&_
  51. "<input class=border type=text name=KEY size=10> "&_
  52. "<SELECT class=search name=TTYPE>"&_
  53. "<OPTION selected value=BYNAME>:::按名称:::</OPTION>"&_
  54. "<OPTION value=BYINTRO>:::按介绍:::</OPTION></SELECT> "&_
  55. "<input bgcolor=#efefef type=submit value=搜索 name=keyword class=border>"&_
  56. "</td></form><form>"&_
  57. "<td align=center valign=bottom nowrap>")
  58. if request.QueryString("type")<>"" then
  59. strQuer="&type="&request.QueryString("type")
  60. else
  61. strQuer=""
  62. end if
  63. response.write("<select size=""1"" name=""goto"" class=border onChange=""window.location=form.goto.options[form.goto.selectedIndex].value"">"&_
  64. "<option value='list.asp' selected>请选择</option>"&_
  65. "<option value='list.asp?rang=id"&strQuer&"'>按序号</option>"&_
  66. "<option value='list.asp?rang=dateRtime"&strQuer&"'>按时间</option>"&_
  67. "<option value='list.asp?rang=numCounters"&strQuer&"'>按浏览</option>"&_
  68. "<option value='list.asp?rang=numDowncount"&strQuer&"'>按观看</option>"&_
  69. "<option value='list.asp?rang=strCommend"&strQuer&"'>按推荐</option>"&_
  70. "</select></td></form><form>"&_
  71. "<td align=right valign=bottom nowrap>"&_
  72. "<img src='../images/goto.gif' width=16 heigth=16> "&_
  73. "<select name=go onChange='window.location=form.go.options[form.go.selectedIndex].value' size=1 style='color:#000000; border-style:solid; border-width:1; background-color:#efefef'>")
  74. Set rs = Server.CreateObject("ADODB.Recordset")
  75. sql="select sort.id,sort.sort from sort"
  76. rs.open sql, conn,1,1
  77. if rs.eof then
  78. response.write("<option selected>--==没有分类==--</option>")
  79. else
  80. if request.QueryString("type")="" then
  81. response.write("<option value='list.asp' selected>--==影片分类列表==--</option>")
  82. else
  83. response.write("<option value='list.asp'>--==影片分类列表==--</option>")
  84. end if
  85. while not rs.eof
  86. strSort=rs("sort")
  87. response.write("<option value='list.asp'>---"&strSort&"---</option>")
  88. Set rs1 = Server.CreateObject("ADODB.Recordset")
  89. sql1="select small.id,small.small,small.sortid from small where sortid='"&strSort&"'"
  90. rs1.open sql1, conn,1,1
  91. while not rs1.eof
  92. numSmallid=cint(rs1("id"))
  93. strSmall=rs1("small")
  94. numRequest=cint(request.QueryString("type"))
  95. if numRequest=numSmallid then
  96. strSelected="selected"
  97. else
  98. strSelected=""
  99. end if
  100. response.write("<option "&strSelected&" value='list.asp?type="&numSmallid&"'>"&strSmall&"</option>")
  101. rs1.movenext
  102. wend
  103. rs1.close
  104. set rs1=nothing
  105. rs.movenext
  106. wend
  107. end if
  108. rs.close
  109. set rs=nothing
  110. response.write("</select></td></form></tr></table><br>")
  111. %>