求助 后台ASP编辑器 不显示了
朋友帮做的一个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>