admin_lbfs.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. <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 order by pid asc"
  10. rs.open rsppl,conn,1,2
  11. if rs.eof then 
  12. response.write("<br/>")
  13. else
  14. pag=30
  15. dim page,maxpage
  16. page=cint(request.QueryString("page"))
  17. if page="" or page<1 then page=1
  18. maxpage=int((rs.recordcount-1)/pag)+1
  19. if page>maxpage then page=maxpage
  20. rs.Move((page-1)*pag)
  21. dim l
  22. l=1
  23. do while ((not rs.EOF) and l <=cint(pag))
  24. if rs("lx")="1" then mmlx="&#x6587;&#x672C;&#x83DC;&#x5355;"
  25. if rs("lx")="2" then mmlx="&#x94FE;&#x63A5;&#x83DC;&#x5355;"
  26. if rs("lx")="3" then mmlx="&#x56FE;&#x7247;&#x83DC;&#x5355;"
  27. if rs("lx")="4" then mmlx="&#x56FE;&#x7247;&#x83DC;&#x5355;"
  28. if rs("lx")="5" then mmlx="&#x9875;&#x9762;&#x83DC;&#x5355;"
  29. if rs("lx")="6" then mmlx="&#x9875;&#x9762;&#x5185;&#x5BB9;"
  30. if rs("lx")="7" then mmlx="WML&#x9875;&#x9762;"
  31. if rs("lx")="8" then mmlx="UBB&#x6807;&#x7B7E;"
  32. if rs("lx")="9" then mmlx="WML&#x6807;&#x7B7E;"
  33. if rs("lx")="10" then mmlx="&#x6587;&#x7AE0;&#x83DC;&#x5355;"
  34. %>
  35. <a href="lm_gl.asp?id=<%=rs("id")%>&amp;sb=<%=sb%>&amp;fs=<%=fs%>">[&#x7BA1;&#x7406;]</a>[<%=mmlx%>]<%=rs("pid")%>.<%=rs("nxn")%><br/>
  36. <%
  37. rs.MoveNext
  38. l=l+1
  39. loop
  40. if page*pag<rs.recordcount then response.write("<a href='admin_lbfs.asp?fs="&fs&"&amp;sb="&sb&"&amp;page=" & page+1 & "'>&#x4E0B;&#x4E00;&#x9875;</a>")
  41. if page>1 then response.write("<a href='admin_lbfs.asp?fs="&fs&"&amp;sb="&sb&"&amp;page=" & page-1 & "'>&#x4E0A;&#x4E00;&#x9875;</a>")
  42. end if
  43. rs.close
  44. set rs=nothing
  45. %>
  46. </table>
  47. </body>
  48. </html>