ASP文本编辑器怎么嵌套到自己的网页中?

来源:百度知道 编辑:UC知道 时间:2024/07/02 22:11:27
我下了一个文本编辑器,但我想嵌套到自己的网页中,实现往编辑器输入内容点提交后,内容能存入数据库。要怎么嵌套呢?(本人菜鸟,请说的详细明白点,谢谢)
我下的文本编辑器有个说明:
使用方法:
直接用iframe标签将Editor.htm页包含在你要调用的页面中即可
注意:
提交表单时,要提取编辑器中的内容为隐藏域content中的内容

是ewebeditor吧
<textarea name="foreground" style="display:none"><%=Server.HTMLEncode(rs("foreground"))%></textarea>
<iframe ID="eWebEditor1" src="eWebEditor/ewebeditor.htm?id=foreground&style=3d" frameborder="0" scrolling="no" width="650" HEIGHT="320"></iframe>

网上很多新闻系统,后台都有这个集成,你可以参考一下