response.write" <td align=left><textarea name="sContent" style="display:none"><%=eContent%></textarea>
<IFRAME ID="eWebEditor1" src="editor/ewebeditor.asp?id=sContent&style=standard1" frameborder="0" scrolling="no" width="100%" height="350"></IFRAME> </td>"& vbcrlf
參考答案:不对
1.<%%>不能再出<%%>
2.在ASP中用两个""表示一个"
修改如下:
response.write" <td align=left><textarea name=""sContent"" style=""display:none"">"&eContent&"</textarea>
<IFRAME ID=""eWebEditor1"" src=""editor/ewebeditor.asp?id=sContent&style=standard1"" frameborder=""0"" scrolling=""no"" width=""100%"" height=""350""></IFRAME> </td>"& vbcrlf
或
response.write" <td align=left><textarea name='sContent' style='display:none'>"&eContent&"</textarea>
<IFRAME ID='eWebEditor1' src='editor/ewebeditor.asp?id=sContent&style=standard1' frameborder='0' scrolling='no' width='100%' height='350'></IFRAME> </td>"& vbcrlf