Latest Lists

How do I define a excel and word function in html code?

Okay, I have a from that I can select with list of files from html. However, how do I make user click on that selection to run the application or load the file. In other words, if have a list of 5 files on selection, i want to do a submit command on html to have it on that either excel or doc file. Possible? To be more specific.. I want to do the following.. 1. have a list of the files I can choose then pick the one I want and load the file Colin K: Your answer is not for a list, it is only for a hyperlink. That is easy. I want to pick from a list and run. The list part I figured it out (form) but not the load file for specific part.

Public Comments

  1. That was not really very clear, but it seems to me you're asking how to have a user click on an HTML link, and it will open a Word or Excel document, correct? If that is the case, then you need to upload the .doc or .xls file to your web server, and then simply create a hyperlink to that document. Example: <a href="sheet.xls">Spreadsheet</a> <a href="document.doc" >Document</a>
Powered by Yahoo! Answers