blob: 2f66e48a1e464187747997066b5531d99cb7fccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<html>
<head>
<title>ThreeApplets</title>
</head>
<body>
A1:
<applet code="ChgNextApplet.class" width=90 height=30 name="A1">
<param name="next" value="A2">
Applet A1
</applet>
<p>
A2:
<applet code="ChgNextApplet.class" width=90 height=30 name="A2">
<param name="next" value="A3">
Applet A2
</applet>
<p>
A3:
<applet code="ChgNextApplet.class" width=90 height=30 name="A3">
<param name="next" value="A1">
Applet A3
</applet>
</body>
</html>
|