怎么样才能在案.cs页面中渠道内容呢?下面是在.aspx页面中的调用代码:
<textarea name="d_content" style="display:none" rows="1" cols="20">测试代码</textarea>
<iframe id="eWebEditor1" src="edit/ewebeditor.htm?id=d_content&style=standard650&skin=vista1" frameborder="0" scrolling="no" width="650" height="350"></iframe>

解决方案 »

  1.   

    什么意思呀,你想说什么,重新把怎么样才能在案.cs页面中渠道内容呢?下面是在.aspx页面中的调用代码:
    <textarea name="d_content" style="display:none" rows="1" cols="20">测试代码 </textarea>
    <iframe id="eWebEditor1" src="edit/ewebeditor.htm?id=d_content&style=standard650&skin=vista1" frameborder="0" scrolling="no" width="650" height="350"> </iframe>
    说明白
      

  2.   

    Request.Form["d_content"]或者<textarea name="d_content" style="display:none" rows="1" cols="20" runat="server">测试代码 </textarea> 这样就可以 d_content.Text了
      

  3.   

    <textarea name="d_content" style="display:none" rows="1" cols="20">测试代码 </textarea> 
    <iframe id="eWebEditor1" src="edit/ewebeditor.htm?id=d_content&style=standard650&skin=vista1" frameborder="0" scrolling="no" width="650" height="350"> </iframe> 正确应该这样
    <textarea runat=server id="d_content" name="d_content" style="display:none" rows="1" cols="20">测试代码 </textarea> 
    <iframe id="eWebEditor1" src="edit/ewebeditor.htm?id=d_content&style=standard650&skin=vista1" frameborder="0" scrolling="no" width="650" height="350"> </iframe> 
    取值:string strText=this.d_content.value;
      

  4.   

    其实我认为用
    ID.InnerHTML或ID.InnerText比较好
    一个取带HTML标签的文本,比如:<div>aa</div>,这就是带HTML标签的文本
    一个是取不带HTML标签的文本