hyperlink question

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
 
S

Steve Easton

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
 
M

MD WebsUnlimited.com

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.
 
K

kip

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)






.
 
S

Stephen Travis

<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.'
 
M

MD WebsUnlimited.com

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top