Click to See Complete Forum and Search --> : how to call localhost program from html ?


q_q
01-29-2008, 11:07 PM
I wanna call localhost c:\windows\explorer.exe program from my html page.
<body>
<script>
function comexe(){
c:\windows\explorer.exe e:\music
}
</script>
<a href="return false;" onclick="comexe()">music</button>
<body>

I wonder how to edit code that can do that for me ?

Hack
01-30-2008, 06:46 AM
For a web page within a browser, you want to open up another browser instance?

What if someone is using FireFox or something type of browser, and all of the sudden, IE appears?

Amahdy
01-31-2008, 05:51 PM
shell("....");