additional.asp 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. <!--#include file="Conn.asp"--><%Checklogin("信息管理")%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>管理区域</title>
  6. <link rel="stylesheet" href="css/common.css" type="text/css" />
  7. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  8. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  9. <script type="text/javascript" src="js/js.js"></script>
  10. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. </head>
  12. <body>
  13. <div id="man_zone" style="margin:0">
  14. <%
  15. Keys=Request.QueryString("Keys")
  16. Keyscode=TextEnCode(Keys)
  17. Ord=Request.QueryString("Ord")
  18. Page = Request.QueryString("Page")
  19. qid=Request.QueryString("qid")
  20. if qid="" or Not IsNumeric(qid) Then
  21. conn.close
  22. set Conn=Nothing
  23. Response.Redirect "/"
  24. End If
  25. If Ord<>"" Then
  26. OrdStr=Ord&","
  27. Else
  28. OrdStr=""
  29. End If
  30. Set Rs=Server.CreateObject("ADODB.RecordSet")
  31. Rs.Open "select productId from productFAQ where questionId="&qid,conn,1,1
  32. productStr=","
  33. Do while Not Rs.bof and Not Rs.eof
  34. productStr=productStr&Rs("productId")&","
  35. Rs.moveNext
  36. loop
  37. Rs.close
  38. Rs.Open "Select id,productName,productPic,productAddtime from product where productName like '%"&Keyscode&"%' Order By productAddtime Desc",Conn,1,1
  39. Keys=Server.UrlEnCode(Keys)
  40. Ord=Server.UrlEnCode(Ord)
  41. hrefstr = "?keys="&Keys
  42. %>
  43. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  44. <thead>
  45. <tr>
  46. <th width="4%"></th>
  47. <th width="6%">序号</th>
  48. <th width="30%">产品名称</th>
  49. <th width="30%">图片</th>
  50. <th width="20%">添加时间</th>
  51. </tr>
  52. </thead>
  53. <tbody>
  54. <%
  55. If Not Rs.Bof And Not Rs.Eof Then
  56. Rs.PageSize = 7
  57. If Page = "" Then Page = 1
  58. If Page = "end" Then Page = Rs.PageCount
  59. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  60. Page = Cint(Page)
  61. If Page > Rs.PageCount Then Page = Rs.PageCount
  62. Rs.AbsolutePage = Page
  63. TempNum = Rs.PageSize * (Page - 1)
  64. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  65. For i=1 To Rs.PageSize
  66. If Rs.Bof Or Rs.Eof Then Exit For
  67. TempNum=TempNum+1:classid=Rs(1)
  68. %>
  69. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  70. <td align="center"><input type="checkbox" <%if instr(productStr,","&Rs("id")&",") then Response.write "checked=""checked""" %> name="chkbox" class="relatedProducts" onChange="relatedProducts(<%=qid%>,<%=Rs("id")%>)" /></td>
  71. <td align="center"><%=TempNum%></td>
  72. <td align="center"><%=Rs("productName")%></td>
  73. <td align="center"><img src="<%=Rs("productPic")%>" height="60px"></td>
  74. <td align="center"><%=Rs("productAddtime")%></td>
  75. </tr>
  76. <%
  77. Rs.MoveNext
  78. Next
  79. Else
  80. If Keys="" Then
  81. %>
  82. <tr>
  83. <td align="center" colspan="8">Sorry,当前暂无信息</td>
  84. </tr>
  85. <%
  86. Else
  87. %>
  88. <tr>
  89. <td align="center" colspan="8"><a href="?">Sorry,没有找到“<%=Keyscode%>”相关的信息,点击返回</a></td>
  90. </tr>
  91. <%
  92. End If
  93. End If
  94. %>
  95. </tbody>
  96. <tfoot>
  97. <tr>
  98. <td colspan="8">
  99. <div class="showpagebox">
  100. <%
  101. If Rs.PageCount > 1 Then
  102. PageName="?qid="&qid&"&Keys="&Keys&"&Ord="&Ord&"&"
  103. Pagelen=3
  104. If Page>1 Then
  105. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  106. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  107. End If
  108. If Pagelen*2+1 >= Rs.PageCount Then
  109. StartPage=1:EndPage=Rs.PageCount
  110. Else
  111. If Page<=Pagelen+1 Then
  112. StartPage=1
  113. EndPage=Pagelen*2+1
  114. Else
  115. StartPage=Page-Pagelen
  116. EndPage=Page+Pagelen
  117. End If
  118. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  119. End If
  120. For i = StartPage To EndPage
  121. If i = Page Then
  122. Response.Write "<a class=""current"">"&i&"</a>"
  123. Else
  124. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  125. End If
  126. Next
  127. If Page<Rs.PageCount Then
  128. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  129. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  130. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  131. End If
  132. Response.Write "<input type=""text"" id=""Pagego"" value="""&Page&""" onFocus=""if(this.value == '"&Page&"'){this.value='';}"" onBlur=""if(this.value == ''){this.value='"&Page&"';}"" onKeyUp=""this.value=this.value.replace(/\D/g,'')"" onKeyDown=""if(event.keyCode==13){location.href='"&PageName&"Page='+document.getElementById('Pagego').value}"" />"
  133. End If
  134. %> </div>
  135. <div class="searchbox"><input type="text" id="keys" value="<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>" onFocus="if(this.value == '<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>'){this.value='';}" onBlur="if(this.value == ''){this.value='<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>';}" onKeyDown="if(event.keyCode==13){location.href='?qid=<%=qid%>&Keys='+escape(document.getElementById('keys').value)}" /><input type="button" id="searchgo" value="go" onClick="location.href='?qid=<%=qid%>&Keys='+escape(document.getElementById('keys').value)" /></div>
  136. <div class="postchkbox">
  137. <select id="chkact" name="chkact">
  138. <option value="1">显示</option>
  139. <option value="0">隐藏</option>
  140. <option value="-1">删除</option>
  141. </select>
  142. <input type="button" value="执行" onClick="postchk(1)" class="btn1" />
  143. <input type="button" value="新增" onClick="location.href='?act=add'" class="btn1" />
  144. </div>
  145. </td>
  146. </tr>
  147. </tfoot>
  148. </table>
  149. <%Rs.Close:Set Rs=Nothing:Set Rs1=Nothing:Conn.Close:Set Conn=Nothing%>
  150. </div>
  151. </body>
  152. </html>