divyakrishnan 20 Junior Poster

Hi..
I want to run an exe file without saving from the server by clicking a hyper link.
My code works fine with internet explorer .But with fire fox it showing save button .
I used the following code

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<!---------Disabling save button works with IE ------------->
<meta name="DownloadOptions" content="nosave" />
<title>Untitled Document</title>


</head>
<body>
<?php
$ebook="E-BOOK/"."186.exe";
?>

<a title="Click to View Ebook"  href="<?php echo $ebook; ?>" ><b>Ebook</b></a>
</body>