3.10.1 标准调用
此例演示了eWebEditor的标准调用方法,也是最常用的调用方法。
要正常使用此代码,请把代码中的"ewebeditor.htm"文件的路径定位到eWebEditor实际的存放的路径。
此例打包在系统的压缩包例子目录中: _example/standard.asp(.php/.aspx/.jsp)
<HTML> <HEAD> <TITLE>eWebEditor : 标准调用示例</TITLE> <META http-equiv=Content-Type content="text/html; charset=gb2312"> <style> body,td,input,textarea {font-size:8pt; font-family:Verdana, Arial, Helvetica} </style> </HEAD> <BODY>
<p><b>Navigator : <a href="default.asp">Home</a> > 标准调用示例</b></p> <p>本样式为系统默认样式(coolblue),最佳调用宽度550px,高度350px!</p>
<FORM method="post" name="myform" action="retrieve.asp"> <TABLE border="0" cellpadding="2" cellspacing="1"> <TR> <TD>Content:</TD> <TD> <INPUT type="hidden" name="content1" value=""> <IFRAME ID="eWebEditor1" src="../ewebeditor.htm?id=content1&style=coolblue" frameborder="0" scrolling="no" width="550" height="350"></IFRAME> </TD> </TR> <TR> <TD colspan=2 align=right> <INPUT type=submit value="Submit"> <INPUT type=reset value="Reset"> <INPUT type=button value="View Source" onclick="location.replace('view-source:'+location)"> </TD> </TR> </TABLE> </FORM>
</BODY> </HTML> |