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
 
what sort of document would i need to create that would do
that?thanks in advanced

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.
 
yes the browser is defined. we all use IE 6.0 what sort of
component would i need??
 
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
 
what would be the best way to attack this problem MD,
since the script wouldn't be good?
 

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

Similar Threads


Back
Top