tagClound.asp 1.3 KB

1234567891011121314151617181920212223242526272829303132
  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. <div class="tagclound">
  16. <h1 class="tagCloundHead">自定义标签云</h1>
  17. <div class="tagArea">
  18. <%Set Rs=Server.CreateObject("ADODB.RecordSet")
  19. Rs.Open "SELECT tagName,count(Distinct cs_code) as count from tagTable left join customer on tagTable.customerid=customer.id where employeeId="&Session("employee_id")&" GROUP BY tagName",conn,1,1
  20. Do while Not Rs.Bof And Not Rs.eof
  21. %>
  22. <a href="tag.asp?tagName=<%=Server.urlEnCode(Rs("tagName"))%>" style="font-size:16px;"><%=Rs("tagName")%>(<%=Rs("count")%>)</a>
  23. <% Rs.moveNext
  24. loop
  25. %>
  26. <a href="nullTag.asp">无标签客户</a>
  27. </div>
  28. <%Rs.Close:Set Rs=Nothing:Conn.Close:Set Conn=Nothing%>
  29. </div>
  30. </div>
  31. </body>
  32. </html>