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

手机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. '====================================================================
  6. ' 请你保留这段说明,这并不会影响你的速度.   电脑交流:http://www.cnscu.cn
  7. ' 程序制作:横云   掌上校园收倾心整理收集于互联网,感谢你的支持!
  8. ' 升级时间: 2008-2-5   主页地址:HTTP://wap.cnscu.cn
  9. ' E-Mail: cnscu@126.com    客服QQ:554904632 QQ群:30493504 QQ群2:46659883
  10. '====================================================================
  11. %> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  12. </head><body><body bgcolor="#fcefff">
  13. <%id=dlubb(request("id"))
  14. if id="" then id="0"
  15. set rss=Server.CreateObject("ADODB.Recordset")
  16. rsppls="select * from wap_lm where id="&id
  17. rss.open rsppls,conn,1,2
  18. if rss.eof then 
  19. response.write("出错了!无此栏目<br/>")
  20. else%>
  21. 项目编号:<%=rss("id")%><br/>
  22. 项目名称:<%=ubb(rss("nxn"))%><br/>
  23. ----------<br/>
  24. <%end if%>
  25. 下级页面菜单<br/>
  26. <%
  27. set rs=Server.CreateObject("ADODB.Recordset")
  28. rsppl="select * from wap_lm where lx=5 and id<>"&id
  29. rs.open rsppl,conn,1,2
  30. if rs.eof then 
  31. response.write("暂无大类菜单<br/>")
  32. else
  33. rs.Move(0)
  34. dim j
  35. j=1
  36. do while ((not rs.EOF) and j <=500000)
  37. %>
  38. <a href="ydlc.asp?sb=<%=sb%>&amp;iid=<%=rs("id")%>&amp;id=<%=id%>&amp;fs=<%=fs%>">进入</a>:<%=ubb(rs("nxn"))%><br/>
  39. <%
  40. rs.MoveNext
  41. j=j+1
  42. loop
  43. end if
  44. %>
  45. <a href="ydlc.asp?sb=<%=sb%>&amp;iid=0&amp;id=<%=id%>&amp;fs=<%=fs%>">移动到首页</a><br/>
  46. </table>
  47. </body>
  48. </html>