Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Use of: StartAppASP('applicationName')

Status
Not open for further replies.

scantron

Programmer
Jul 4, 2002
27
CA
Hi,

I am trying to create a web page which uses links that open applications on a users PC. Example Access database apps.

So far I have VBScript code in the HTML:

<SCRIPT LANGUAGE=&quot;VBSCRIPT&quot;>
Sub StartAppASP (strStartApp)
Window.Navigate &quot;CheckAcl.ASP?startfile=&quot;&strStartApp
End Sub
</SCRIPT>

And the link coded as so:

<A HREF=&quot;javascript:StartAppASP('applicationName.asp')&quot;>ROAD</A>

I borrowed this code from a different application. I don't have an ASP file ex. 'applicationName.asp' to access. All I have is the actually application file ex. applicationName.dbf.

How & Why do I create this asp file?

Thank you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top