source: trunk/vnc/vnc_javasrc/index.html @ 128

Last change on this file since 128 was 66, checked in by quentin, 17 years ago

Initial checkin of modified Java VNC viewer for use as remote console

File size: 1.0 KB
Line 
1<!--
2     index.html - an example HTML page for TightVNC Java viewer applet, to be
3     used with a standalone Web server running on the same machine where the
4     TightVNC server is running. Before using this example, please MAKE SURE
5     to check the following:
6
7     * the value of the PORT parameter should be set correctly (normally, the
8       port number is 5900 + display number);
9
10     * the CODE and ARCHIVE attributes of the <APPLET> tag should point to
11       the correct directory (this example assumes that this page is in the
12       same directory with .jar and .class files);
13
14     * the WIDTH and HEIGHT attributes of the <APPLET> tag correspond to the
15       actual desktop size on the server (height should be increased to leave
16       enough space for the button panel).
17-->
18
19<HTML>
20<TITLE>
21TightVNC desktop
22</TITLE>
23<APPLET CODE="VncViewer.class" ARCHIVE="VncViewer.jar"
24        WIDTH="800" HEIGHT="632">
25<PARAM NAME="PORT" VALUE="5901">
26</APPLET>
27<BR>
28<A href="http://www.tightvnc.com/">TightVNC site</A>
29</HTML>
Note: See TracBrowser for help on using the repository browser.