subTagClound.asp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <%Set Rs=Server.CreateObject("ADODB.RecordSet")
  16. Rs.Open "select id,em_user from employee where em_role="&Session("employee_id"),conn,1,1
  17. Do while not Rs.bof and not Rs.eof
  18. %>
  19. <div class="tagclound">
  20. <h1 class="tagCloundHead2"><%=Rs("em_user")%>的客户画像:</h1>
  21. <div class="tagArea">
  22. <%Set Rs1=Server.CreateObject("ADODB.RecordSet")
  23. Rs1.Open "Select tagName,count(id) as count from tagTable where employeeId="&Rs("id")&" GROUP BY tagName",conn,1,1
  24. Do while Not Rs1.Bof And Not Rs1.eof
  25. %>
  26. <a href="subTag.asp?employeeId=<%=Rs("id")%>&tagName=<%=Server.urlEnCode(Rs1("tagName"))%>" ><%=Rs1("tagName")%>(<%=Rs1("count")%>)</a>
  27. <% Rs1.moveNext
  28. loop
  29. %>
  30. </div>
  31. <%Rs1.Close:Set Rs1=Nothing%>
  32. </div>
  33. <%
  34. Rs.moveNext
  35. loop
  36. Rs.close
  37. Set Rs=Nothing
  38. Conn.Close
  39. Set Conn=Nothing
  40. %>
  41. </div>
  42. </body>
  43. </html>