
May 20th, 2003, 09:23 PM
|
|
Registered User
|
|
Join Date: May 2003
Posts: 7
Time spent in forums: 45 m 22 sec
Reputation Power: 0
|
|
|
Userdocument with Parameter
Hi All.
I can call a user document with a paramer in the IE Address bar eg:
C:\Program Files\Microsoft Visual Studio\VB98\docMyDocument.vbd?Parameter
I can call the Userdocument using these lines of code in ASP:
Sub Window_OnLoad
Navigate "docMyDocument.VBD"
End Sub
I have beed trying to pass it a parameter with the following syntax :
Navigate "docMyDocument.VBD?Parameter"
This does not seem to work.
How do I call the userdocument in ASP with a parameter ?
|