当前位置: 代码迷 >> ASP >> 怎么把textarea中的HTML写入数据库
  详细解决方案

怎么把textarea中的HTML写入数据库

热度:415   发布时间:2012-02-04 15:43:09.0
如何把textarea中的HTML写入数据库
如题

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

content = rs( "content ")
content=Replace(content, " < ", "&lt; ")
content=Replace(content, "> ", "&gt; ")
content=Replace(content, " ", "&nbsp; ")
content=Replace(content,Chr(10), " <br/> <br/> ")
  相关解决方案