ts_lm.asp
上传用户:sking1122
上传日期:2020-09-24
资源大小:1005k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
  2. <html>
  3. <!--#include file="admin_sb.asp"-->
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. </head><body><body bgcolor="#fcefff">
  7. <%
  8. set rs=Server.CreateObject("ADODB.Recordset")
  9. rsppl="select * from wap_lm where lx<>500 and did=0 and lx=1 or lx=3 or lx=9 order by pid asc"
  10. rs.open rsppl,conn,1,2
  11. if rs.eof then 
  12. response.write("暂无内容<br/>")
  13. else
  14. rs.Move(0)
  15. dim j
  16. j=1
  17. do while ((not rs.EOF) and j <=500000)
  18. if rs("lx")="1" then mmlx="文本菜单"
  19. if rs("lx")="2" then mmlx="链接菜单"
  20. if rs("lx")="3" then mmlx="图片菜单"
  21. if rs("lx")="4" then mmlx="图片链接"
  22. if rs("lx")="5" then mmlx="页面菜单"
  23. if rs("lx")="6" then mmlx="页面内容"
  24. if rs("lx")="7" then mmlx="WML页面"
  25. if rs("lx")="8" then mmlx="UBB标签"
  26. if rs("lx")="9" then mmlx="WML标签"
  27. if rs("lx")="10" then mmlx="自助WML"
  28. %>
  29. <a href="lm_gl.asp?id=<%=rs("id")%>&amp;sb=<%=sb%>&amp;fs=<%=fs%>">[管理]</a>[<%=mmlx%>]<%=rs("pid")%>.<%=rs("nxn")%><br/>
  30. <%
  31. rs.MoveNext
  32. j=j+1
  33. loop
  34. end if
  35. %>
  36. </table>
  37. </body>
  38. </html>