看一下你的表格有没有设置宽度。
或者你测试留言的时候用的留的都是同一个数字或者字母。这样就把表格组撑开了。。
或者你强制换行一下。
<%
function codetohtml(str)
if not isnull(str) then
str = replace(str, ">", ">")
str = replace(str, "<", "<")
str= Replace(str, CHR(32), " ")
str= Replace(str, CHR(9), " ")
str= Replace(str, CHR(34), """)
str= Replace(str, CHR(39), "'")
str= Replace(str, CHR(13), "")
str= Replace(str, CHR(10) & CHR(10), "</P><P> ")
str= Replace(str, CHR(10), "<BR> ")
codetohtml = str
end if
end function
%>
下面是你要显示留言内容的地方
<%
content=rs("content")
content=codetohtml(content)
response.write(content)
%>