我做的留言簿里的数据库的字段顺序是这样的,附图!
可在show.asp里显示字段内容的时候,按照他的顺序根本不对!
只有这样的字段号顺序才可以如此显示!
title,换行:username,sex,age,work,mail,换行:cont
数据库里的字段不是从0开始的吗?!
图片如下:
<!--#include file="conn.asp"-->
<% Set RS=conn.execute("select * from login order by ID desc" ) %>
<p>
<% Do while not RS.eof %>
<tr align="center"><td width="100%" align="CENTER" <%=RS(9)%>style="font-family:幼圆; font-size: 8pt; color: #A789C5"><%=RS(2)%><%=RS(1)%><%=RS(3)%><%=RS(6)%><%=RS(7)%><td width="100%" style="font-family:幼圆; font-size: 10pt; color: #A789C5"><%=RS(10)%></td> </TR>
</p>
</TR>
<% RS.Movenext
Loop
RS.close
conn.close
%>