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

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

开发平台:

ASP/ASPX

  1. <HTML xmlns="http://www.w3.org/1999/xhtml">
  2. <HEAD>
  3. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8" />
  4. <TITLE>订单列表</TITLE>
  5. <link rel="stylesheet" href="Images/CssAdmin.css">
  6. <script language="javascript" src="../skweb/JS/Admin.js"></script></HEAD>
  7. <!--#include file="../skweb/Const.asp" -->
  8. <!--#include file="../skweb/ConnSiteData.asp" -->
  9. <!--#include file="CheckAdmin.asp"-->
  10. <%
  11. if Instr(session("AdminPurview"),"|93,")=0 then 
  12.   response.write ("<font color='red')>你不具有该管理模块的操作权限,请返回!</font>")
  13.   response.end
  14. end if
  15. '========判断是否具有管理权限
  16. %>
  17. <BODY>
  18. <%
  19. dim Result,StartDate,EndDate,Keyword
  20. Result=request.QueryString("Result")
  21. StartDate=request.QueryString("StartDate")
  22. EndDate=request.QueryString("EndDate")
  23. Keyword=request.QueryString("Keyword")
  24. function PlaceFlag()
  25.   if Result="Search" then
  26.     Response.Write "订单:列表&nbsp;->&nbsp;检索&nbsp;->&nbsp;订购时间[<font color='red'>"&StartDate&"至"&EndDate&"</font>],关键字[<font color='red'>"&Keyword&"</font>]"
  27.   else
  28.     Response.Write "订单:列表&nbsp;->&nbsp全部"
  29.   end if
  30. end function  
  31. %>
  32. <table width="100%" border="0" cellpadding="5" cellspacing="1" bgcolor="#CCCCCC">
  33.   <tr>
  34.     <td height="29" nowrap background="Images/menutitle.gif"><table width="470" border="0" cellspacing="0" cellpadding="0">
  35.       <tr>
  36.         <td width="121"><strong><font color="#000000" size="2">产品管理</font></strong></td>
  37.         <td width="87"><a href="ProductEdit.asp?Result=Add"><img src="Images/x1.gif" width="52" height="17" border="0"></a></td>
  38.         <td width="87"><a href="ProductList.asp"><img src="Images/xlm.gif" width="52" height="17" border="0"></a></td>
  39.         <td width="87"><a href="ProductSort.asp"><img src="Images/xx.gif" width="52" height="17" border="0"></a></td>
  40.         <td width="88"><a href="OrderList.asp"><img src="Images/xdd.gif" width="52" height="17" border="0"></a></td>
  41.       </tr>
  42.     </table></td>
  43.   </tr>
  44.   <tr>
  45.     <td height="36" align="center" nowrap  bgcolor="#EBF2F9"><table width="100%" border="0" cellspacing="0">
  46.       <tr>
  47.         <form name="formSearch" method="post" action="Search.asp?Result=Order">
  48.           <td nowrap> 订单检索:从
  49.             <script language=javascript> 
  50.           var myDate=new dateSelector(); 
  51.           myDate.year--; 
  52.   myDate.date; 
  53.           myDate.inputName='start_date';  //注意这里设置输入框的name,同一页中日期输入框,不能出现重复的name。 
  54.           myDate.display(); 
  55.           </script>
  56.           &nbsp;到
  57.           <script language=javascript> 
  58.           myDate.year++; 
  59.           myDate.inputName='end_date';  //注意这里设置输入框的name,同一页中的日期输入框,不能出现重复的name。 
  60.           myDate.display(); 
  61.           </script>
  62.           &nbsp;&nbsp;关键字:<input name="Keyword" type="text" class="textfield" value="<%=Keyword%>" size="18">
  63.           <input name="submitSearch" type="submit" class="button" value="检索">
  64.           </td>
  65.         </form>
  66.         <td align="right" nowrap>查看:<a href="OrderList.asp" onClick='changeAdminFlag("订单信息列表")'>所有订单信息</a></td>
  67.       </tr>
  68.     </table>
  69. </td>    
  70.   </tr>
  71. </table>
  72. <table width="100%" border="0" cellspacing="1" cellpadding="0">
  73.   <tr>
  74.     <td height="30"><%PlaceFlag()%></td>
  75.   </tr>
  76. </table>
  77. <table width="100%" border="0" cellpadding="5" cellspacing="1" bgcolor="#CCCCCC">
  78.   <form action="DelContent.asp?Result=Order" method="post" name="formDel" >
  79.   <tr>
  80.     <td width="26" height="24" nowrap background="Images/tn.gif"><font color="#FFFFFF"><strong>ID</strong></font></td>
  81.     <td width="88" background="Images/tn.gif"><font color="#FFFFFF"><strong>订购者</strong></font></td>
  82.     <td nowrap background="Images/tn.gif"><font color="#FFFFFF"><strong>产品名称及编号</strong></font></td>
  83.     <td width="126" nowrap background="Images/tn.gif"><strong><font color="#FFFFFF">订购单位</font></strong></td>
  84.     <td width="118" nowrap background="Images/tn.gif"><strong><font color="#FFFFFF">订购时间</font></strong></td>
  85.     <td width="118" nowrap background="Images/tn.gif"><strong><font color="#FFFFFF">回复时间</font></strong></td>
  86.     <td width="76" colspan="2" nowrap background="Images/tn.gif"><strong><font color="#FFFFFF">操作</font></strong>
  87.       <input onClick="CheckAll(this.form)" name="buttonAllSelect" type="button" class="button"  id="submitAllSelect" value="全" style="HEIGHT: 18px;WIDTH: 16px;">
  88.       <input onClick="CheckOthers(this.form)" name="buttonOtherSelect" type="button" class="button"  id="submitOtherSelect" value="反" style="HEIGHT: 18px;WIDTH: 16px;"> </td>
  89.   </tr>
  90.   <% OrderList() %>
  91.   </form>
  92. </table>
  93. </BODY>
  94. </HTML>
  95. <%
  96. '-----------------------------------------------------------
  97. function OrderList()
  98.   dim idCount'记录总数
  99.   dim pages'每页条数
  100.       pages=20
  101.   dim pagec'总页数
  102.   dim page'页码
  103.       page=clng(request("Page"))
  104.   dim pagenc'每页显示的分页页码数量=pagenc*2+1
  105.       pagenc=2
  106.   dim pagenmax'每页显示的分页的最大页码
  107.   dim pagenmin'每页显示的分页的最小页码
  108.   dim datafrom'数据表名
  109.       datafrom="sk_Order"
  110.   dim datawhere'数据条件
  111.       if Result="Search" then
  112.      datawhere="where ( ProductName like '%" & Keyword &_
  113.            "%' or ProductNo like '%" & Keyword &_
  114.            "%' or Linkman like '%" & Keyword &_
  115.            "%' or Company like '%" & Keyword &_
  116.            "%') and AddTime >= #" & StartDate & " # and AddTime <= #" & EndDate & "#"
  117.   else
  118.         datawhere=""
  119.   end if
  120.   dim sqlid'本页需要用到的id
  121.   dim Myself,PATH_INFO,QUERY_STRING'本页地址和参数
  122.       PATH_INFO = request.servervariables("PATH_INFO")
  123.   QUERY_STRING = request.ServerVariables("QUERY_STRING")'
  124.       if QUERY_STRING = "" or Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")=0 then
  125.     Myself = PATH_INFO & "?"
  126.   else
  127.     Myself = Left(PATH_INFO & "?" & QUERY_STRING,Instr(PATH_INFO & "?" & QUERY_STRING,"Page=")-1)
  128.   end if
  129.   dim taxis'排序的语句 asc,desc
  130.       taxis="order by id desc"
  131.   dim i'用于循环的整数
  132.   dim rs,sql'sql语句
  133.   '获取记录总数
  134.   sql="select count(ID) as idCount from ["& datafrom &"]" & datawhere
  135.   set rs=server.createobject("adodb.recordset")
  136.   rs.open sql,conn,0,1
  137.   idCount=rs("idCount")
  138.   '获取记录总数
  139.   if(idcount>0) then'如果记录总数=0,则不处理
  140.     if(idcount mod pages=0)then'如果记录总数除以每页条数有余数,则=记录总数/每页条数+1
  141.   pagec=int(idcount/pages)'获取总页数
  142.     else
  143.       pagec=int(idcount/pages)+1'获取总页数
  144.     end if
  145. '获取本页需要用到的id============================================
  146.     '读取所有记录的id数值,因为只有id所以速度很快
  147.     sql="select id from ["& datafrom &"] " & datawhere & taxis
  148.     set rs=server.createobject("adodb.recordset")
  149.     rs.open sql,conn,1,1
  150.     rs.pagesize = pages '每页显示记录数
  151.     if page < 1 then page = 1
  152.     if page > pagec then page = pagec
  153.     if pagec > 0 then rs.absolutepage = page  
  154.     for i=1 to rs.pagesize
  155.   if rs.eof then exit for  
  156.   if(i=1)then
  157.     sqlid=rs("id")
  158.   else
  159.     sqlid=sqlid &","&rs("id")
  160.   end if
  161.   rs.movenext
  162.     next
  163.   '获取本页需要用到的id结束============================================
  164.   end if
  165. '-----------------------------------------------------------
  166. '-----------------------------------------------------------
  167.   if(idcount>0 and sqlid<>"") then'如果记录总数=0,则不处理
  168.     '用in刷选本页所语言的数据,仅读取本页所需的数据,所以速度快
  169.     sql="select * from ["& datafrom &"] where id in("& sqlid &") "&taxis
  170.     set rs=server.createobject("adodb.recordset")
  171.     rs.open sql,conn,0,1
  172.     while(not rs.eof)'填充数据到表格
  173.   Response.Write "<tr bgcolor='#EBF2F9' onMouseOver = ""this.style.backgroundColor = '#FFFFFF'"" onMouseOut = ""this.style.backgroundColor = ''"" style='cursor:hand'>" & vbCrLf
  174.       Response.Write "<td nowrap>"&rs("ID")&"</td>" & vbCrLf
  175.       Response.Write "<td nowrap>"&Guest(rs("MemID"),rs("Linkman"))&"</td>" & vbCrLf
  176.   if StrLen(rs("ProductName")&"["&rs("ProductNo")&"]")>33 then
  177.         Response.Write "<td title="&rs("ProductName")&"["&rs("ProductNo")&"]"&" nowrap>"&StrLeft(rs("ProductName")&"["&rs("ProductNo")&"]",30)&"</td>" & vbCrLf
  178.       else
  179.         Response.Write "<td title="&rs("ProductName")&"["&rs("ProductNo")&"]"&" nowrap>"&rs("ProductName")&"["&rs("ProductNo")&"]"&"</td>" & vbCrLf
  180.       end if 
  181.   if StrLen(rs("Company"))>21 then
  182.         Response.Write "<td title="&rs("Company")&" nowrap>"&StrLeft(rs("Company"),18)&"</td>" & vbCrLf
  183.       else
  184.         Response.Write "<td title="&rs("Company")&" nowrap>"&rs("Company")&"</td>" & vbCrLf
  185.       end if
  186.       Response.Write "<td nowrap>"&rs("AddTime")&"</td>" & vbCrLf
  187.       Response.Write "<td nowrap>"&rs("ReplyTime")&"</td>" & vbCrLf
  188.       Response.Write "<td width='48' nowrap><a href='OrderEdit.asp?Result=Modify&ID="&rs("ID")&"' onClick='changeAdminFlag(""查看回复订单信息"")'><font color='#330099'>查看.回</font></a></td>" & vbCrLf
  189.       Response.Write "<td width='14' nowrap><input name='selectID' type='checkbox' value='"&rs("ID")&"' style='HEIGHT: 13px;WIDTH: 13px;'></td>" & vbCrLf
  190.       Response.Write "</tr>" & vbCrLf
  191.   rs.movenext
  192.     wend
  193.     Response.Write "<tr>" & vbCrLf
  194.     Response.Write "<td colspan='6' nowrap  bgcolor='#EBF2F9'>&nbsp;</td>" & vbCrLf
  195.     Response.Write "<td colspan='2' nowrap  bgcolor='#EBF2F9'><input name='submitDelSelect' type='button' class='button'  id='submitDelSelect' value='删除所选' onClick='ConfirmDel(""您真的要删除这些订单信息吗?"");'></td>" & vbCrLf
  196.     Response.Write "</tr>" & vbCrLf
  197.   else
  198.     response.write "<tr><td height='50' align='center' colspan='8' nowrap  bgcolor='#EBF2F9'>暂无订单信息</td></tr>"
  199.   end if
  200. '-----------------------------------------------------------
  201. '-----------------------------------------------------------
  202.   Response.Write "<tr>" & vbCrLf
  203.   Response.Write "<td colspan='8' nowrap  bgcolor='#D7E4F7'>" & vbCrLf
  204.   Response.Write "<table width='100%' border='0' align='center' cellpadding='0' cellspacing='0'>" & vbCrLf
  205.   Response.Write "<tr>" & vbCrLf
  206.   Response.Write "<td>共计:<font color='#ff6600'>"&idcount&"</font>条记录&nbsp;页次:<font color='#ff6600'>"&page&"</font></strong>/"&pagec&"&nbsp;每页:<font color='#ff6600'>"&pages&"</font>条</td>" & vbCrLf
  207.   Response.Write "<td align='right'>" & vbCrLf
  208.   '设置分页页码开始===============================
  209.   pagenmin=page-pagenc '计算页码开始值
  210.   pagenmax=page+pagenc '计算页码结束值
  211.   if(pagenmin<1) then pagenmin=1 '如果页码开始值小于1则=1
  212.   if(page>1) then response.write ("<a href='"& myself &"Page=1'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>9</font></a>&nbsp;") '如果页码大于1则显示(第一页)
  213.   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则显示(更前)
  214.   if(pagenmax>pagec) then pagenmax=pagec '如果页码结束值大于总页数,则=总页数
  215.   for i = pagenmin to pagenmax'循环输出页码
  216. if(i=page) then
  217.   response.write ("&nbsp;<font color='#ff6600'>"& i &"</font>&nbsp;")
  218. else
  219.   response.write ("[<a href="& myself &"Page="& i &">"& i &"</a>]")
  220. end if
  221.   next
  222.   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;") '如果页码结束值小于总页数则显示(更后)
  223.   if(page<pagec) then response.write ("<a href='"& myself &"Page="& pagec &"'><font style='FONT-SIZE: 14px; FONT-FAMILY: Webdings'>:</font></a>&nbsp;") '如果页码小于总页数则显示(最后页)
  224.   '设置分页页码结束===============================
  225.   Response.Write "跳到:第&nbsp;<input name='SkipPage' onKeyDown='if(event.keyCode==13)event.returnValue=false' onchange=""if(/D/.test(this.value)){alert('只能在跳转目标页框内输入整数!');this.value='"&Page&"';}"" style='HEIGHT: 18px;WIDTH: 40px;'  type='text' class='textfield' value='"&Page&"'>&nbsp;页" & vbCrLf
  226.   Response.Write "<input style='HEIGHT: 18px;WIDTH: 20px;' name='submitSkip' type='button' class='button' onClick='GoPage("""&Myself&""")' value='GO'>" & vbCrLf
  227.   Response.Write "</td>" & vbCrLf
  228.   Response.Write "</tr>" & vbCrLf
  229.   Response.Write "</table>" & vbCrLf
  230.   rs.close
  231.   set rs=nothing
  232.   Response.Write "</td>" & vbCrLf  
  233.   Response.Write "</tr>" & vbCrLf
  234. '-----------------------------------------------------------
  235. '-----------------------------------------------------------
  236. end function 
  237. function Guest(ID,Linkman)
  238.   Dim rs,sql
  239.   Set rs=server.CreateObject("adodb.recordset")
  240.   sql="Select * From sk_Members where ID="&ID
  241.   rs.open sql,conn,1,1
  242.   if rs.bof and rs.eof then
  243.     Guest=Linkman
  244.   else
  245.     Guest="<font color='green'>会员:</font><a href='MemEdit.asp?Result=Modify&ID="&ID&"' onClick='changeAdminFlag(""前台会员资料"")'>"&Linkman&"</a>"
  246.   end if
  247.   rs.close
  248.   set rs=nothing
  249. end function 
  250. %>