Re: how to call .exe file using html.
Actually I am not quite right, you can use:[code:tboovrcp]<a href="javascript:LaunchApp()">Launch the executable</a>
<script>
function LaunchApp() {
if (!document.all) {
alert ("Available only with Internet Explorer.");
return;
}
var ws = new ActiveXObject("WScript.Shell");
ws.Exec("C:\\Program Files\\Adobe\\Photoshop 6.0\\Photoshp.exe");
}
</script>[/code:tboovrcp][url:tboovrcp]http://www.experts-exchange.com/Web/Web_Languages/Q_20694402.html[/url:tboovrcp]
But it only works on IE
Flabby Rabbit