我想用eWebEditor作为我的在线编辑器,一切都设置好了,我的前台代码如下<asp:TextBox id="TextBox1" runat="server"></asp:TextBox>
<iframe ID="eWebEditor1" src="/ewebeditor.asp?id=TextBox1&style=standard" frameborder="0" scrolling="no" width="500" HEIGHT="350"></iframe> 
<asp:Button id="Button1" runat="server" Text="Button"></asp:Button>cs文件中的按钮事件代码为private void Button1_Click(object sender, System.EventArgs e)
{
Response.Write(TextBox1.Text);
}
但是运行的时候,按下按钮,确没有执行代码,而是把在线编辑器的文本写入到TextBox1中了。
也就是表单没有提交。为什么会这样呢,请问怎样解决这个问题,大家在asp.net中是怎样用在线编辑器的。