hyperlink question

  • Thread starter Thread starter kip
  • Start date Start date
K

kip

Im developing a web site for my company, and had a
question. I am wanting to link a button on my page to an
executable file that each person on the network has. how
do i go about doing this i tried doing a browse in the
button properties box but when i do that and click on the
link it brings up a download box.thanks for any help

kip
 
By default you can't open / launch an
executable from within an html browser window.

You can however link to a document that will cause
the application to open in Windows.

hth

--
95isalive
This site is best viewed..................
...............................with a computer

Im developing a web site for my company, and had a
question. I am wanting to link a button on my page to an
executable file that each person on the network has. how
do i go about doing this i tried doing a browse in the
button properties box but when i do that and click on the
link it brings up a download box.thanks for any help

kip
 
Hi Kip,

You said this is a company website so is the type of browser defined, e.g.
everyone uses IE? If so, then you can create a component that will run the
exe file.
 
what type of component would i need?

-----Original Message-----
Hi Kip,

You said this is a company website so is the type of browser defined, e.g.
everyone uses IE? If so, then you can create a component that will run the
exe file.
--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
FrontPage Add-ins Since '97 2003 / 2002 / 2000 Compatible
---------------------------------------------------------- ------------------
--------------------
If you think I'm doing a good job, let MS know at (e-mail address removed)






.
 
<script language="VBScript">
Set WshShell = CreateObject("Wscript.Shell")
WshShell.Run "C:\WINNT\notepad.exe"
</script>

You can supress the prompt by changing the browser Intranet security setting to Enable 'Initialize and script ActiveX controls not
marked as safe.'
 
Whoa, that would allow any and all files to be downloaded an ran. Not a good
thing aka Martha Stewart.
--
Mike -- FrontPage MVP '97-'02
http://www.websunlimited.com
FrontPage Add-ins Since '97 2003 / 2002 / 2000 Compatible
----------------------------------------------------------------------------
--------------------
If you think I'm doing a good job, let MS know at (e-mail address removed)

Stephen Travis said:
<script language="VBScript">
Set WshShell = CreateObject("Wscript.Shell")
WshShell.Run "C:\WINNT\notepad.exe"
</script>

You can supress the prompt by changing the browser Intranet security
setting to Enable 'Initialize and script ActiveX controls not
 
Back
Top