⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 admin_orderform.asp

📁 程序为品牌程序,信誉、质量、服务有保证 主要功能有文章,留言,下载,论坛,博客,统计,调查 模块化的程序设计
💻 ASP
字号:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
option explicit
response.buffer=true	
Const PurviewLevel=5    '操作权限
Const CheckChannelID=2    '所属频道,0为不检测所属频道
%>
<!--#include file="Admin_ChkPurview.asp"-->
<!--#include file="inc/conn.asp"-->
<!--#include file="inc/function.asp"-->
<!--#include file="inc/ubbcode.asp"-->
<%
const MaxPerPage=20
dim strFileName,FileName
dim totalPut,CurrentPage,TotalPages
dim sql,rsOrderForm
dim Action,FoundErr,ErrMsg
FileName="Admin_OrderForm.asp"
Action=trim(request("Action"))
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>订购单管理</title>
<link href="Admin_Style.css" rel="stylesheet" type="text/css">
</head>
<body leftmargin="2" topmargin="0" marginwidth="0" marginheight="0">
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="border">
  <tr class="topbg"> 
    <td height="22" colspan="2" align="center"><strong>订 购 单 管 理</strong></td>
  </tr>
  <tr class="tdbg"> 
    <td width="70" height="30"><strong>管理导航:</strong></td>
    <td><a href="Admin_OrderForm.asp">订购单管理首页</a></td>
  </tr>
</table>
<%
if Action="Show" then
	call ShowOrderForm()
elseif Action="Del" then
	call DelOrderForm()
else
	call main()
end if
if FoundErr=True then
	call WriteErrMsg()
end if
call CloseConn()

sub main()
	sql="select * from OrderForm order by OrderFormID desc"
	Set rsOrderForm= Server.CreateObject("ADODB.Recordset")
	rsOrderForm.open sql,conn,1,1
	if rsOrderForm.eof and rsOrderForm.bof then
		totalPut=0
		if Child=0 then
			response.write "<p align='center'><br>没有任何文章!<br></p>"
		else
			response.write "<p align='center'><br>此栏目的下一级子栏目中没有任何文章!<br></p>"
		end if
	else
		totalPut=rsOrderForm.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 strFileName,totalput,MaxPerPage,true,true,"篇文章"
		else
			if (currentPage-1)*MaxPerPage<totalPut then
				rsOrderForm.move  (currentPage-1)*MaxPerPage
				dim bookmark
				bookmark=rsOrderForm.bookmark
				showContent
				showpage strFileName,totalput,MaxPerPage,true,true,"篇文章"
			else
				currentPage=1
				showContent
				showpage strFileName,totalput,MaxPerPage,true,true,"篇文章"
			end if
		end if
	end if
	rsOrderForm.close
	set rsOrderForm=nothing  
end sub

sub showContent
   	dim FormCount
    FormCount=0
%>
<br>
<table width='100%' border="0" cellpadding="0" cellspacing="0">
  <tr>
    <form name="myform" method="Post" action="Admin_OrderFormDel.asp" onsubmit="return ConfirmDel();">
      <td><table class="border" border="0" cellspacing="1" width="100%" cellpadding="0">
          <tr class="title" height="22">
            <td height="22" width="30" align="center"><strong>选中</strong></td>
            <td width="80" align="center"  height="22"><strong>订单编号</strong></td>
            <td align="center" ><strong>订购单位</strong></td>
            <td width="100" align="center" ><strong>联系人</strong></td>
            <td width="150" align="center" ><strong>联系电话</strong></td>
            <td width="100" align="center" ><strong>操作</strong></td>
          </tr>
          <%do while not rsOrderForm.eof%>
          <tr class="tdbg" onmouseout="this.style.backgroundColor=''" onmouseover="this.style.backgroundColor='#BFDFFF'">
            <td width="30" align="center"><input name='OrderFormID' type='checkbox' onclick="unselectall()" id="OrderFormID" value='<%=cstr(rsOrderForm("OrderFormID"))%>'>
            </td>
            <td width="80" align="center"><%=rsOrderForm("OrderFormNum")%></td>
            <td><%response.write "<a href='Admin_OrderForm.asp?Action=Show&OrderFormID=" & rsOrderForm("OrderFormID") & "'>" & rsOrderForm("Company") & "</a>" %></td>
            <td width="100" align="center"><%= rsOrderForm("ContactMan") %></td>
            <td width="150" align="center"><%= rsOrderForm("Phone") %></td>
            <td width="100" align="center"><%
			response.write "<a href='Admin_OrderForm.asp?Action=Del&OrderFormID=" & rsOrderForm("OrderFormID") & "'>删除</a>" %></td>
          </tr>
          <%
		FormCount=FormCount+1
	   	if FormCount>=MaxPerPage then exit do
	   	rsOrderForm.movenext
	loop
%>
        </table>
          <table width="100%" border="0" cellpadding="0" cellspacing="0">
            <tr>
              <td width="250" height="30"><input name="chkAll" type="checkbox" id="chkAll" onclick=CheckAll(this.form) value="checkbox">
              选中本页显示的所有订单</td>
              <td><input name="submit" type='submit' value='删除选定的订单' onClick="document.myform.Action.value='Del'">
                  <input name="Action" type="hidden" id="Action" value="Del">
              </td>
            </tr>
          </table>
      </td>
    </form>
  </tr>
</table>
<%
end sub

sub ShowOrderForm()
	dim OrderFormID
	OrderFormID=trim(request("OrderFormID"))
	if OrderFormID="" then
		FoundErr=true
		ErrMsg=ErrMsg & "<br><li>请指定订单ID</li>"
		exit sub
	else
		OrderFormID=Clng(OrderFormID)
	end if
	
	sql="select * from OrderForm where OrderFormID=" & OrderFormID
	Set rsOrderForm= Server.CreateObject("ADODB.Recordset")
	rsOrderForm.open sql,conn,1,1
	if rsOrderForm.eof and rsOrderForm.bof then
		FoundErr=True
		ErrMsg=ErrMsg & "<br><li>找不到指定的订单!</li>"
		rsOrderForm.close
		set rsOrderForm=nothing
		exit sub
	end if
%>
<form name="form1" method="post" action="Admin_OrderForm.asp">
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1" class="border">
  <tr class="title">
    <td height="22" colspan="4" align="center"><strong> 订 购 单 信 息</strong></td>
  </tr>
  <tr class="tdbg">
    <td width="68">单位名称:</td>
    <td colspan="3"><%=rsOrderForm("Company")%></td>
  </tr>
  <tr class="tdbg">
    <td>联 系 人:</td>
    <td width="377"><%=rsOrderForm("ContactMan")%></td>
    <td width="67">联系电话:</td>
    <td width="227"><%=rsOrderForm("Phone")%></td>
  </tr>
  <tr class="tdbg">
    <td>联系地址:</td>
    <td><%=rsOrderForm("Address")%> </td>
    <td>邮政编码:</td>
    <td><%=rsOrderForm("PostCode")%> </td>
  </tr>
  <tr>
    <td colspan="4"><table width="100%" border="0" cellspacing="1" cellpadding="0">
      <tr align="center" class="tdbg">
        <td colspan="6"><strong>订 购 设 备 清 单</strong></td>
        </tr>
      <tr align="center" class="tdbg">
        <td>产品名称</td>
        <td>规格型号</td>
        <td>单位</td>
        <td>数量</td>
        <td>送货时间</td>
        <td>备注</td>
      </tr>
	  <%
	  dim rsFormItem,i,j
	  i=0
	  set rsFormItem=conn.execute("select * from OrderForm_Item where OrderFormID=" & rsOrderForm("OrderFormID"))
	  do while not rsFormItem.eof
	  %>
      <tr align="center" class="tdbg">
        <td><%=rsFormItem("ProductName")%></td>
        <td><%=rsFormItem("Standard")%></td>
        <td><%=rsFormItem("Unit")%></td>
        <td><%=rsFormItem("Ammount")%></td>
        <td><%=rsFormItem("SendTime")%> </td>
        <td><%=rsFormItem("Remark")%> </td>
      </tr>
	  <%
	  	rsFormItem.movenext
		i=i+1
	loop
	set rsFormItem=nothing
	for j=i+1 to 10
	%>
      <tr align="center" class="tdbg">
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
	  <%
	  next
	  %>
    </table>
    </td>
  </tr>
  <tr class="tdbg">
    <td>特殊要求:</td>
    <td height="50" colspan="3" valign="top"><%=ubbcode(rsOrderForm("SpecialDemand"))%></td>
  </tr>
  <tr align="center" class="tdbg">
    <td height="40" colspan="4"><input name="OrderFormID" type="hidden" id="OrderFormID" value="<%=OrderFormID%>">      <input name="Action" type="hidden" id="Action" value="Del">      <input name="Submit" type="submit" id="Submit" value="删除本订单"></td>
  </tr>
</table>
</form>
<%
	rsOrderForm.close
	set rsOrderForm=nothing
end sub
%>
</body>
</html>
<%
sub DelOrderForm()
	dim OrderFormID,i
	OrderFormID=trim(Request("OrderFormID"))
	if OrderFormID="" then
		FoundErr=True
		ErrMsg=ErrMsg & "<br><li>请指定订单ID</li>"
		Exit sub
	end if

	if instr(OrderFormID,",")>0 then
		dim idarr
		idArr=split(OrderFormID)
		for i = 0 to ubound(idArr)
		    conn.execute "delete from OrderForm where OrderFormID=" & Clng(idArr(i))
		    conn.execute "delete from OrderForm_Item where OrderFormID=" & Clng(idArr(i))
		next
	else
		conn.execute "delete from OrderForm where OrderFormID=" & Clng(OrderFormID)
		conn.execute "delete from OrderForm_Item where OrderFormID=" & Clng(OrderFormID)
	end if
	call CloseConn()
	response.redirect "Admin_OrderForm.asp"
end sub
%>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -