I'm trying to open up a VB exe from a web page, without bringing up the "File Download" pop-up dialog window. I was able to use the following VB script to open up the exe without getting the pop-up window...
<script Language="VBScript">
Sub Shell(sExecutable)
Dim o
Set o = CreateObject("WScript.Shell"
o.Exec sExecutable
End Sub
</script>
But, this seems to work with opening applications on the client - for files on a network drive, I am getting vbscript error "file can't be found". Any ideas of how I can open an app on a network drive with out getting an error - and still not get the File Download dialog window?
<script Language="VBScript">
Sub Shell(sExecutable)
Dim o
Set o = CreateObject("WScript.Shell"
o.Exec sExecutable
End Sub
</script>
But, this seems to work with opening applications on the client - for files on a network drive, I am getting vbscript error "file can't be found". Any ideas of how I can open an app on a network drive with out getting an error - and still not get the File Download dialog window?