| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
- <title>网站后台管理登陆</title>
- <meta name="Keywords" content="网站后台管理系统,网站内容管理系统,asp网站后台管理系统,西安网站建设,
- 西安网络公司" />
- <meta name="web designner" content="">
- <link rel="stylesheet" type="text/css" href="../bdcommx/css.css">
- </head>
- <!--#include file="../bdcommx/connxyz.asp"-->
- <%
- call log_chk()
- %>
- <body>
- <%if request("act")="mod" then
- Set rs1= Server.CreateObject ("ADODB.RecordSet")
- sql="select * from bdkhdg where dg_id="&request("thex")&""
- rs1.open sql,conn,1,3
- rs1("dg_hf")=request("hfnote")
- rs1("dg_open")=request("Online")
- rs1.update
- rs1.close
- set rs1=nothing
- call GoUrl("Dmod.asp?thex="&request("thex")&"","提交成功!")
- end if
- %>
- <table width="100%" height="42" border="0" cellpadding="0" cellspacing="0"><tr>
- <td width="18" height="42" align="center" background="../images/top_bg2.jpg"><img src="../images/dian.gif" width="10" height="10" /></td>
- <td background="../images/top_bg2.jpg" class="hui12">后台管理:>> 订单查看处理</td>
- </tr>
- </table>
- <table width="95%" border="0" align="center" cellpadding="5" cellspacing="1" class="tab_bdr">
- <form name="myform" method="post" action="?act=mod">
- <%dim thex
- thex=request("thex")
- Set rs1= Server.CreateObject ("ADODB.RecordSet")
- sql="select * from bdkhdg where dg_id="&thex&" order by dg_time desc"
- rs1.open sql,conn,1,3
- %><tr>
- <td height="30" colspan="4" align="center" class="tab_bdr" background="../images/bg2.jpg"><strong>订单查看处理</strong></td>
- </tr>
- <tr>
- <td width="16%" height="26" align="right" class="NcB_bg">产品名称:</td>
- <td width="50%" align="left" class="NcB_bg"><%=rs1("cp_name")%>
- <input name="thex" type="hidden" id="thex" value="<%=rs1(0)%>" /></td>
- <td width="13%" align="right" class="NcB_bg">提交日期:</td>
- <td width="21%" align="left" class="NcB_bg"><%=rs1("dg_time")%></td>
- </tr> <tr>
- <td width="16%" height="26" align="right" class="NcB_bg">姓名:</td>
- <td align="left" class="NcB_bg"><font color="red"><%=rs1("kh_name")%></font></td>
- <td align="right" class="NcB_bg">电话:</td>
- <td align="left" class="NcB_bg"><%=rs1("kh_tel")%></td>
- </tr>
- <tr>
- <td width="16%" height="26" align="right" class="NcB_bg">地址:</td>
- <td align="left" class="NcB_bg"><%=rs1("kh_address")%></td>
- <td align="right" class="NcB_bg">订购数量:</td>
- <td align="left" class="NcB_bg"><%=rs1("cp_sl")%></td>
- </tr>
- <tr>
- <td width="16%" height="26" align="right" class="NcB_bg">说明:</td>
- <td colspan="3" align="left" class="NcB_bg"><%=rs1("kh_note")%></td>
- </tr> <tr>
- <td width="16%" height="26" align="right" class="NcB_bg">处理说明:</td>
- <td colspan="3" align="left" class="NcB_bg">
- <textarea name="hfnote" cols="70" rows="8" id="hfnote"><%=rs1("dg_hf")%></textarea></td>
- </tr> <tr>
- <td width="16%" height="26" align="right" class="NcB_bg">是否隐藏:</td>
- <td colspan="3" align="left" class="NcB_bg"><input name="Online" type="radio" value="0" <%if rs1("dg_open")=0 then%>checked="checked"<%end if%>>
- 未处理
- <input type="radio" name="Online" value="1" <%if rs1("dg_open")=1 then%>checked="checked"<%end if%>/>
- 已处理 </td>
- </tr> <tr>
- <td width="16%" height="26" align="right" class="NcB_bg"> </td>
- <td colspan="3" align="left" class="NcB_bg"><input type="submit" name="Submit" value="处理订单" /></td>
- </tr>
- <%
- rs1.close
- set rs1=nothing
- %>
- </form>
- </table>
- </body>
- </html>
|