URL PARAM tag



Specifies the URL of a file whose contents will populate the document.

Syntax

<PARAM NAME = "URL" VALUE = "fileName">

Values

fileName
The full URL of an existing file to load and display at run time.

Usage

Instead of displaying a blank document when you instantiate the WP applet, you can import the contents of an existing file to the document. You do this by including the URL PARAM tag in the code that instantiates the applet.

For example, if MyDoc.xxx resides in the directory myserver.com\docs\htmldocs and you want to display the contents of MyDoc.xxx when the user opens MyWP.html, MyWP.html should look like this:

<HTML>
<HEAD>
<TITLE>WP URL example</TITLE>
<BODY>
<APPLET NAME="MyWP" CODE="lotus.wp.WordProcessor"
   CODEBASE="..\.."
   WIDTH=500 HEIGHT=450>
   <PARAM NAME = "URL" VALUE = "myserver.com\docs\htmldocs\MyDoc.xxx">
</APPLET>
</BODY>
</HTML>

See also
fileName PARAM tag