注册 登录
编程论坛 ASP技术论坛

求助 后台ASP编辑器 不显示了

夜幕下的农村 发布于 2008-11-01 11:27, 1205 次点击
朋友帮做的一个ASP网站小后台 里面有个在线编辑器 就象WORD的编辑功能一样 我把这个后台当成通用的后台了 在别的网站看都好使 但昨天新套了一个页面 编辑器在后台就怎么也不显示 这是为什么呀  下面是后台的图

这个是 调用的 代码 <table width="100%" border="0" cellspacing="0" cellpadding="5">
            <tr>
              <td>
              <textarea name="Content" style="display:none"></textarea>
              <% If Editor=0 Then %>
              <iframe ID="Editor" name="Editor" src="HtmlEditor/htmleditor.html?ID=Content" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:320px;width:100%"></iframe>
              <% Else %>
              <iframe ID="Content" src="editor/ewebeditor.asp?id=Content" frameborder="0" scrolling="no" width="100%" HEIGHT="425"><% End If %></iframe>              </td>
            </tr>
          </table>
1 回复
#2
bntiger2008-11-02 15:32
<% If Editor=0 Then %>
              <iframe ID="Editor" name="Editor" src="HtmlEditor/htmleditor.html?ID=Content" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:320px;width:100%"></iframe>
              <% Else %>
              <iframe ID="Content" src="editor/ewebeditor.asp?id=Content" frameborder="0" scrolling="no" width="100%" HEIGHT="425"><% End If %></iframe>
有问题啊
第一:<% End If %>在</iframe>前就结束拉。肯定出不来啊。
第二:你调用的不是一个编辑器啊,一个是 HtmlEditor/htmleditor.html,一个是editor/ewebeditor.asp这个啊。确定都存在,建议统一。
修改为:
<table width="100%" border="0" cellspacing="0" cellpadding="5">
            <tr>
              <td>
              <textarea name="Content" style="display:none"></textarea>
              <% If Editor=0 Then %>
              <iframe ID="Editor" name="Editor" src="editor/ewebeditor.asp?id=Content" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:320px;width:100%"></iframe>
              <% Else %>
              <iframe ID="Content" src="editor/ewebeditor.asp?id=Content" frameborder="0" scrolling="no" width="100%" HEIGHT="425">
</iframe>  <% End If %>            </td>
            </tr>
          </table>
希望你对有所帮助
1