Hi, I have an applet that I call on my jsp page like this
<applet codebase = "/applet"
code= "testapplet/Test01.class"
name = "Test" width="550" height="300"> </applet>
W3 consortium said that applet is deprecated.
How to use <object> instead <applet> tag? I try this one:
<object classid = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
codebase = " id="Chart" >
<PARAM NAME = CODE VALUE = "applet.testapplet.Test01.class" >
</object>
but it did not find the Test01.class.
<applet codebase = "/applet"
code= "testapplet/Test01.class"
name = "Test" width="550" height="300"> </applet>
W3 consortium said that applet is deprecated.
How to use <object> instead <applet> tag? I try this one:
<object classid = "clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
codebase = " id="Chart" >
<PARAM NAME = CODE VALUE = "applet.testapplet.Test01.class" >
</object>
but it did not find the Test01.class.