1)建立一个2行11列的表格,第1行是表头。第2行用36次循环实现。每次循环读取3行记录,写成一个表格行。
2)建立3个一样的并排的表格,左中右。
前面插入类似下面的语句<%
set
rs=conn.execute("select
classid,title,content,writer,writefrom,addtime,picurl
from
article
where
articleid="&request("id"))
if
rs.eof
and
rs.bof
then
response.redirect
"index.asp"
response.end
else
dim
classid,title,content,writer,writefrom,addtime,picurl
classid=rs(0)
title=rs(1)
content=rs(2)
writer=rs(3)
writefrom=rs(4)
addtime=rs(5)
picurl=rs(6)
end
if
rs.close%>
然后在页面中加入如<%=title%>这样的语句来引用即可
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)