price.asp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!--#include file="Conn.asp"--><%Checklogin()%>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>管理区域</title>
  7. <link rel="stylesheet" href="css/common.css" type="text/css" />
  8. <link rel="stylesheet" href="css/alert.css" type="text/css" />
  9. <script language="javascript" src="system/js/jquery-1.7.2.min.js"></script>
  10. <script type="text/javascript" src="js/js.js"></script>
  11. </head>
  12. <body class="clear">
  13. <!--#include file="panel.asp"-->
  14. <div id="man_zone">
  15. <%
  16. Set Rs=Server.CreateObject("ADODB.RecordSet")
  17. %>
  18. <form id="form1" method="post" action="?act=postchk&Keys=<%=keys%>&Page=<%=Page%>" onSubmit="return false" />
  19. <div class="fastSelect clear">
  20. <H1>报价查询</H1>
  21. <div class="selectItem">
  22. <label>区域</label>
  23. <select name="fliterCountry" id="fliterCountry" >
  24. <option value="">请选择国家地区</option>
  25. <%Rs.Open "Select id,countryName from country where id in(select distinct cs_country from customer where cs_belong="&Session("employee_id")&")",conn,1,1
  26. Do while Not Rs.Bof And Not Rs.eof
  27. %>
  28. <option value="<%=Rs("id")%>"> <%=Rs("countryName")%></option>
  29. <%
  30. Rs.moveNext
  31. loop
  32. Rs.close
  33. %>
  34. </select>
  35. </div>
  36. <div class="selectItem selectProduct" >
  37. <label>产品</label>
  38. <select name="fliterproduct" id="fliterproduct">
  39. <option value="">请选择产品</option>
  40. <%Rs.Open "Select id,ProductName from Products",conn,1,1
  41. Do while Not Rs.Bof And Not Rs.eof
  42. %>
  43. <option value="<%=Rs("id")%>"><%=Rs("ProductName")%></option>
  44. <%
  45. Rs.moveNext
  46. loop
  47. Rs.close
  48. %>
  49. </select>
  50. </div>
  51. <div class="selectItem selectnum">
  52. <label>数量</label>
  53. <select name="fliternum" id="fliternum" >
  54. <option value="">请选择产品</option>
  55. </select>
  56. </div>
  57. </div>
  58. <table width="100%" class="table2" >
  59. <tr class="theader">
  60. <th width="15%">产品名称</th>
  61. <th width="15%">图片</th>
  62. <th width="10%">起订数量</th>
  63. <th width="30%">报价管理</th>
  64. <th width="20%">备注</th>
  65. </tr>
  66. <tr id="pricecontrol" class="pricecontrol">
  67. </tr>
  68. </table>
  69. </div>
  70. </form>
  71. <%Set Rs=Nothing:Conn.Close:Set Conn=Nothing%>
  72. </div>
  73. </body>
  74. </html>