[求助]asp 为什么接收过来的文章没有html
我在后台添加了一篇文章版都排好了!但是前台却
和没排一样!
Server.HtmlEncode
用了这个也是一样!郁闷!
不知道你具体是怎么写的?
假设你添加的字段是content
添加时用:<input name="content" type="hidden" value=""><IFRAME ID="eWebEditor1" src="../ewebeditor2/ewebeditor.asp?id=content&style=s_coolblue" frameborder="0" scrolling="no" width="550" height="350"></IFRAME>
红色的要对应,外部编辑器根据你的具体情况调整
修改时用:<input type="hidden" name="content" value="<%=server.htmlencode(rso("content"))%>"><IFRAME ID="eWebEditor1" src="../ewebeditor2/ewebeditor.asp?id=content&style=s_coolblue" frameborder="0" scrolling="no" width="550" height="350"></IFRAME>
保存时都用:
content=request("content")
......'省略若干句
rs("content")=content
读取时用
<%=rs("content")%>
即可
楼主可对以上做个参考