Dear all,

I just have written a very simple Excel so that users can operate (update/insert data) it.

I don't want to put it in a "share driver". Instead, I want to put it in a web site so that users can open this Excel in IE and then update their required data.

Since this web server only support HTML, can I simply add some codes in the HTML so that user is "forced" to open the Excel in IE and then save the edited Excel via the IE?

I suppose the code is as simply as follow:

Code:
<html> 
<head> 
<title> Price Excel </title>
</head>
<h1> Edit the Excel and then save it in IE. </h1>
<br></br>
<p>
Click <a href="./price.xls" target="_blank" > 
[here]</a> to open the Excel!
</p>
</body>
</html>
Many thanks