www.gusucode.com > 爱美尔女性商城源码 1.0源码程序 > admintouch/tjbb3.asp

    <!--#include file="conn.asp"-->
<%if session("bjxadmin")="" then
response.Write "<script language='javascript'>alert('网络超时或您还没有登陆!');window.location.href='login.asp';</script>"
response.End
else
if session("flag")=2 then
response.Write "<p align=center><font color=red>您没有此项目管理权限!</font></p>"
response.End
end if
end if
%>
<html><head><title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link href="images/css.css" rel="stylesheet" type="text/css">
<style type="text/css">
<!--
.style1 {color: #FF0000}
-->
</style>
</head>
<body>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
<tr><td valign="top"> 
<%'开始分页
				Const MaxPerPage=12 
   				dim totalPut   
   				dim CurrentPage
   				dim TotalPages
   				dim j
   				dim sql
    			if Not isempty(request("page")) then
      			currentPage=Cint(request("page"))
   				else
      			currentPage=1
   				end if 
	set rs=server.CreateObject("adodb.recordset")
    rs.open "select distinct(dingdan),userid,userzhenshiname,actiondate,songhuofangshi,zhifufangshi,zhuangtai,niming from BJX_action where bookid="&request("bookid")&"  order by actiondate desc",conn,1,1

		  
				if err.number<>0 then
				response.write "数据库中无数据"
				end if
				
  				if rs.eof And rs.bof then
       				Response.Write "<p align='center' class='contents'> 对不起,您选择的状态目前还没有订单!</p>"
   				else
	  				totalPut=rs.recordcount

      				if currentpage<1 then
          				currentpage=1
      				end if

      				if (currentpage-1)*MaxPerPage>totalput then
	   					if (totalPut mod MaxPerPage)=0 then
	     					currentpage= totalPut \ MaxPerPage
	   					else
	      					currentpage= totalPut \ MaxPerPage + 1
	   					end if
      				end if

       				if currentPage=1 then
            			showContent
            			showpage totalput,MaxPerPage,"editdingdan.asp"
       				else
          				if (currentPage-1)*MaxPerPage<totalPut then
            				rs.move  (currentPage-1)*MaxPerPage
            				dim bookmark
            				bookmark=rs.bookmark
            				showContent
             				showpage totalput,MaxPerPage,"editdingdan.asp"
        				else
	        				currentPage=1
           					showContent
           					showpage totalput,MaxPerPage,"editdingdan.asp"
	      				end if
	   				end if
   				   				end if

   				sub showContent
       			dim i
	   			i=0

			%>
	<table class="tableBorder" width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#6a7f9a">
	<tr >
	<td colspan="6" align="right" background="images/admin_bg_1.gif">&nbsp;</td>
	</tr>
	<tr > 
	<td align="center">订单号(<span class="style1">红色的为匿名订单</span>)</td>
	<td align="center">下单用户</td>
	<td align="center">订货人姓名</td>
	<td align="center">付款方式</td>
	<td align="center">收货方式</td>
	<td align="center">订单状态</td>
	</tr>
        <%do while not rs.eof
		dim Godbook,username
		  set Godbook=server.CreateObject("adodb.recordset")
		  Godbook.open "select username from bjx_User where userid="&rs("userid"),conn,1,1
		  username=trim(Godbook("username"))
		  Godbook.close
		  set Godbook=nothing
		  %>
        <tr > 
          <td align="center"> <%if rs("niming")=0 then%><a href="javascript:;" onClick="javascript:window.open('viewdingdan.asp?dan=<%=trim(rs("dingdan"))%>&username=<%=username%>','','width=710,height=388,toolbar=no, status=no, menubar=no, resizable=yes, scrollbars=yes');return false;"><%=trim(rs("dingdan"))%></a><%else%><a href="javascript:;" onClick="javascript:window.open('viewnimingdingdan.asp?dan=<%=trim(rs("dingdan"))%>&username=<%=username%>','','width=710,height=388,toolbar=no, status=no, menubar=no, resizable=yes, scrollbars=yes');return false;"><font color=red><%=trim(rs("dingdan"))%></font></a><%end if%></td>
          <td align="center"><%=username%></td>
          <td align="center"><%=trim(rs("userzhenshiname"))%></td>
          <td align="center">
              <%dim rs2
          '///支付方式
          set rs2=server.CreateObject("adodb.recordset")
          rs2.open "select * from BJX_songhuo where songid="&int(rs("zhifufangshi")),conn,1,1
		  if rs2.eof and rs2.bof then
		  response.write "方式已被删除"
		  else
          response.Write trim(rs2("subject"))
          end if
		  rs2.Close
          set rs2=nothing
          %>
          </td>
          <td align="center">
			<%
          '///送货方式
          set rs2=server.CreateObject("adodb.recordset")
          rs2.Open "select * from BJX_songhuo where songid="&int(rs("songhuofangshi")),conn,1,1
		  if rs2.eof and rs2.bof then
		  response.write "方式已被删除"
		  else
          response.Write trim(rs2("subject"))
          end if
		  rs2.close
          set rs2=nothing%>
          </td>
          <td align="center">
              <%
		  select case rs("zhuangtai")
	case "1"
	response.write "未作任何处理"
	case "2"
	response.write "用户已经划出款"
	case "3"
	response.write "服务商已经收到款"
	case "4"
	response.write "服务商已经发货"
	case "5"
	response.write "用户已经收到货"
	end select%>
	</td>
	</tr>
        <%i=i+1
			if i>=MaxPerPage then Exit Do
			rs.movenext
		loop
		rs.close
		set rs=nothing%>
      </table>
                              <%  
				End Sub   
  
				Function showpage(totalnumber,maxperpage,filename)  
  				Dim n
  				
				If totalnumber Mod maxperpage=0 Then  
					n= totalnumber \ maxperpage  
				Else
					n= totalnumber \ maxperpage+1  
				End If
				'//////////////////
				Response.Write "<form method=Post action="&filename&"?bookid="&request("bookid")&">"  
				'//////////////////
				Response.Write "<p align='center' class='contents'> "  
				If CurrentPage<2 Then  
					Response.Write "<font class='contents'>首页 上一页</font> "  
				Else  
					'///////////////////
					Response.Write "<a href="&filename&"?page=1&bookid="&request("bookid")&"  class='contents'>首页</a> "  
					Response.Write "<a href="&filename&"?page="&CurrentPage-1&"&bookid="&request("bookid")&" class='contents'>上一页</a> "  
					'//////////////////
				End If
				
				If n-currentpage<1 Then  
					Response.Write "<font class='contents'>下一页 尾页</font>"  
				Else 
				'//////////////////////// 
					Response.Write "<a href="&filename&"?page="&(CurrentPage+1)&"&bookid="&request("bookid")&" class='contents'>"  
					Response.Write "下一页</a> <a href="&filename&"?page="&n&"&bookid="&request("bookid")&" class='contents'>尾页</a>"
					'/////////////////////
				End If  
					Response.Write "<font class='contents'> 页次:</font><font class='contents'>"&CurrentPage&"</font><font class='contents'>/"&n&"页</font> "  
					Response.Write "<font class='contents'> 共有"&totalnumber&"笔订单 "&maxperpage&"笔订单/页</font> " 
					Response.Write "<font class='contents'>转到:</font><input type='text' name='page' size=2 maxlength=10 class=smallInput value="&currentpage&">"  
					Response.Write "&nbsp;<input type='submit'  class='contents' value='GO' name='cndok'></form>"  
				End Function  
				%>
</td>
</tr>
</table>
<!--#include file="bjxfoot.asp"-->
</body>
</html>