主题:编辑器的内容怎样才能插入数据库??
我把编辑器的内容提交时,数据库会多出一行,但是没有内容.为什么?
<textarea name="content1" style="display:none"></textarea>
<iframe ID="eWebEditor1" src="eWebEditor_v280_Free/ewebeditor.asp?id=content1&style=s_mini" frameborder="0" scrolling="no" width="500" HEIGHT="350"></iframe>
这是调用编辑器的代码.
下面一部分插入代码对吗?能获取吗?(其中连接数据库省略)
string n=Request["content1"];
String sql="insert into gonggao(gg) values('"+n+"')";
<textarea name="content1" style="display:none"></textarea>
<iframe ID="eWebEditor1" src="eWebEditor_v280_Free/ewebeditor.asp?id=content1&style=s_mini" frameborder="0" scrolling="no" width="500" HEIGHT="350"></iframe>
这是调用编辑器的代码.
下面一部分插入代码对吗?能获取吗?(其中连接数据库省略)
string n=Request["content1"];
String sql="insert into gonggao(gg) values('"+n+"')";