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--%> 

enter image description here

why don't see applet ? have used netbeans ide.

i tried !

enter image description here

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

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -