==========为什么这个对不齐==========
调用sub过程中的内容 一行4列的显示为什么总是对不齐 (这段代码为粮精后台的syscode.asp中 我把它改成一行4列的就是对不齐 气死人了) 求高手来看看
sub ArticleContent(intTitleLen)
dim i,strTemp
i=0
strTemp=""
strTemp= strTemp & "<table width=100% border=0 align=center cellpadding=3 cellspacing=0>"
do while not rsArticle.eof
strTemp= strTemp & "<tr>"
for x=1 to 4
if rsArticle.eof then exit for
strTemp= strTemp & "<td height=107>"
strTemp= strTemp & "<table border=0 align=center cellpadding=0 cellspacing=0 >"
strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td width=102>"
strTemp= strTemp & "<div align=center><a href=ArticleShow.asp?ArticleID=" & rsArticle("articleid") & ">"
strTemp= strTemp & "<img border=0 src=" & rsArticle("img") & " width=80 height=80>"
strTemp= strTemp & "</a></div></td>"
strTemp= strTemp & "</tr>"
strTemp= strTemp & "<tr>"
strTemp= strTemp & "<td height=11>"
strTemp= strTemp & "<a href=ArticleShow.asp?ArticleID=" & rsArticle("articleid") & ">" & rsArticle("Title") & ""
strTemp= strTemp & "</a></td>"
strTemp= strTemp & "</tr>"
strTemp= strTemp & "</table>"
strTemp= strTemp & "</td>"
rsArticle.movenext
i=i+1
next
strTemp= strTemp & "</tr>"
strTemp= strTemp & "</table>"
if i>=MaxPerPage then exit do
loop
response.write strTemp
end sub
请帮小弟更正一下 谢谢大家