Originally Posted by
Poojasrivastava
i did the same thing using javascript..may be that helps you..
here is the javascript code:
<html>
<head>
<title></title>
</head>
<body>
<script type="text/javascript">
function read()
{
var myApp = new ActiveXObject("Excel.Application");
if (myApp != null)
{
myApp.visible = true;
myApp.workbooks.open("C:\\Book2.xls");
}
}
</script>
<button onclick="read();">READ</button>
</body>
</html>
Nice code. You should post this one on Web forum.
Failure is not fatal, but failure to change might be. - John Wooden