java - unable to invoke applet from jsp -
applet tag in jsp :
<%--<applet code ="applets/applet_1" height="500" width="500"/>--%> <jsp:plugin type="applet" code="applet_1.class" codebase="web/web-inf/classes/applets"/> <%--this tag inside jsp page index.jsp--%>
why don't see applet ? have used netbeans ide.
i tried !
and changed tag :
<jsp:plugin type="applet" code="applet_1.class" codebase="applets" height="300" width="300"/>
but nothing changed .
try this
<applet name="applet1" code="applet_1.class" codebase="/web/web-inf/classes/applets" width="300" height="300" </applet>
Comments
Post a Comment