如题
------解决方案--------------------
看看你的数据库相应字段有没有html的标记,比如 <br/> 之类的,如果没有,在显示的时候,把从数据库读出来的字段转换一下,就可以看到html的格式了。
content = rs( "content ")
content=Replace(content, " < ", "< ")
content=Replace(content, "> ", "> ")
content=Replace(content, " ", " ")
content=Replace(content,Chr(10), " <br/> <br/> ")