I have a page where there is a link to an Excel document on the web server. The link and upload works fine. The problem lies when the user edits the document and tries to save it, it automatically wants to do a save as with My Documents being default. Is there a way to open the document in ASP without losing the filepath so the user can just hit save? Here is how the document is being opened:
This will normally be an Excel document, but it could be about anything. Thanks!
Code:
<a href="files/<%=lors.fields("filepath")%>" target="_newwindow">View File</a>
This will normally be an Excel document, but it could be about anything. Thanks!