quantitySearch.asp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <!--#include file="Conn.asp"--><%Checklogin()%>
  2. <%
  3. product=Request.QueryString("productId")
  4. country=Request.QueryString("country")
  5. str=""
  6. Set Rs=Server.CreateObject("ADODB.RecordSet")
  7. Rs.open "select ProductName,ProductImg,unit,moq,tips from Products where id="&product,conn,1,1
  8. If not Rs.bof and Not Rs.eof Then
  9. productname=Rs("productname")
  10. productImg=Rs("productImg")
  11. unit=Rs("unit")
  12. moq=Rs("moq")
  13. tips=TextUnCode(Rs("tips"))
  14. if isnull(moq) Then moq="无数量限制"
  15. str="<td>"&productname&"</td><td><img src="&productImg&"></td><td>"&moq&"</td>"
  16. End If
  17. Rs.close
  18. Rs.open "select * from Products where (nosale like '"&country&"%' or nosale like '%,"&country&",%' or nosale like '%"&country&"') and Id="&product&"",conn,1,1
  19. If Not Rs.bof and not Rs.eof Then
  20. str=str&"<td class=""nosale"">产品无法在该地区销售,请勿报价。<br>"&TextUnCode(Rs("note"))&"</td>"
  21. Else
  22. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  23. Rs1.open "select distinct num,price from price where productId="&product&" and AreaId="&country&" order by num asc",conn,1,1
  24. If not Rs1.bof and not Rs1.eof Then
  25. str=str&"<td><ul>"
  26. for i=1 to Rs1.Recordcount
  27. str=str&"<li>订单数量:≥"&Rs2("num")&"<span class=""unit"">"&unit&"</span><span class=""price"">"&Rs2("price")&"</span>RMB</li>"
  28. Rs1.moveNext
  29. Next
  30. str=str&"</ul></td><td>"&tips&"</td>"
  31. Else
  32. Set Rs2=Server.CreateObject("ADODB.RecordSet")
  33. Rs2.open "select distinct num,price from price where productId="&product&" and AreaId=0 order by num asc",conn,1,1
  34. str=str&"<td><ul>"
  35. Do while Not Rs2.bof and not Rs2.eof
  36. str=str&"<li>订单数量:≥"&Rs2("num")&"<span class=""unit"">"&unit&"</span><span class=""price"">"&Rs2("price")&"</span>RMB</li>"
  37. Rs2.moveNext
  38. loop
  39. str=str&"</ul></td><td>"&tips&"</td>"
  40. Rs2.close
  41. Set Rs2=Nothing
  42. End if
  43. Rs1.close
  44. Set Rs1=Nothing
  45. End If
  46. Rs.close
  47. response.write str
  48. Set Rs=Nothing
  49. conn.close
  50. Set conn=Nothing
  51. %>