xxx

<html xmlns="http://www.w3.org/1999/xhtml">
<!--#include file="xxx/xxx"-->
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title></title>
</head>

<body>
      <%
      rs.open "select * from xxx where xxx <> 10 order by xxx desc",conn,1,3
      for rs_c=1 to rs.recordcount

      %>
      <table>
            <tr><td></td><td>
<%=rs.Fields(0).name%></td><td></td><td>
<%=rs.Fields(1).name%></td><td></td><td>
<%=rs.Fields(2).name%></td><td></td><td>
<%=rs.Fields(3).name%></td>

</tr>
      <tr><td></td><td>
<%=rs.Fields(0).Value%></td><td></td><td>
<%=rs.Fields(1).Value%></td><td></td><td>
<%=rs.Fields(2).Value%></td><td></td><td>
<%=rs.Fields(3).Value%></td>
</tr>
</table>
      <%
        rs.movenext
      next
      rs.close
      %>

</body>
</html>

原文地址:https://www.cnblogs.com/xred/p/2476248.html