我在jsp中嵌入了带有applet标签的applet,这不是在jsp中集成applet的方法,所以我用jsp替换了我的applet标签:plugin但我在applet中没有得到任何图像。下面是代码片段
<applet name="viewerApplet" id="TViewerApplet" width="100%" height="500" code="com.applet.TViewerApplet.class" align="baseline" codebase="." mayscript="mayscript" archive="SignedViewer.jar,cmbview81.jar"> </applet>
替换为以下代码
<jsp:plugin code="com.applet.TViewerApplet.class" codebase="." type="applet" name="viewerApplet" width="100%" height="500" archive="SignedViewer.jar,cmbview81.jar">
</jsp:plugin>
怎么了。请指导。编辑:使用小程序标签它工作正常。