Java applet---how to plug it in webpage?
Quote:
Originally Posted by ddadmin
Are you talking about a Java applet? That would be the way to embed a Java program within a webpage. Having said that, search is a complex process, and it really depends on how your site is built (ie: php, plain html etc) when implementing a search function for it.
Will you please give an example where we can plug an applet within a webpage. I know some java applet, but I dont know how to plug them.
How to put this code? Where to put it?
Quote:
Originally Posted by Twey
<applet> is deprecated.
Code:
<object type="application/x-java-applet" width="300" height="100">
<!--[if IE]>
<object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
width="300" height="100">
<![endif]-->
<param name="code" value="XXX.class">
Alternative content
<!--[if IE]>
</object>
<![endif]-->
</object>
Thanks to Mike (Winter).
Hello, thank you Mburt and Twey. In what order we should put the code?
Mburt's code first then Twey's code?
What is Twey's code for? Why do we have to do browser testing in Twey's code?
I don't have access with my computer; so, I won't be able to try these things till night.