Specifies the URL of a file whose contents will populate the document.
<PARAM NAME = "URL" VALUE = "fileName">
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>