How do I read an applet parameters?
Category: java.applet, viewed: 3976 time(s).
Now we have the applet code ready. To enable the web browser to execute the applet create the following html page.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Parameterized Applet</title>
</head>
<body>
<applet code="org.kodejava.example.applet.AppletParameterExample"
height="150" width="350">
<param name="name" value="Mr. Bean" />
</applet>
</body>
</html>
Download Hundreds of Complimentary Industry Resources
Get hundreds of popular Industry magazines, white papers, webinars, podcasts, and more;
all available at no cost to you. With more than 600 complimentary offers, you'll find
plenty of titles to suit your professional interests and needs.
Click Here and Sign up today!
Related Examples
|
|


