Joan said:
hi does anyone know how to embed an Excel Spreadsheet on
a server to a webpage in frontpage so that you can enter,
edit data etc. via the webpage which will then show the
updated results on the page preferably without using
hyperlinks
thanks
Simplistically, it's easy to simply put the Excel spreadsheet on the web
site, and from an HTML file link to it. Then, when user clicks on the
link the browser downloads a COPY of this spreadsheet to user it and
recognizes it's an XLS file. If user has Excel, then browser will lauch
portions of Excel to load their individual copy of the file into the
browser to display with the help of the Excel components.
However, the problems are (that you must think through) that a COPY of
the file has been delivered to the user. The ORIGINAL on the web server
is not locked to stop other people from making their own independant
changes to their own different copies that they independantly have
downloaded.
And once copies are made you need a way for user(s) to copy the new
version of file back to the web server. Even if the users could write
back directly to the web server, how would the web server handle the
potential for simultaneous write-backs, and how would the web server
decide whose version is the one to actually write? It would be chaos.
Frankly, all that is much too complicated for a web site. You need other
technology to achieve this.
Think of the web site as a way to PUBLISH the information for viewing.
If needing to write back information, have a controlled/managed
write-back procedure (preferably independant of HTTP). I've done this
by simply giving designated people access to the File Share on a mapped
LAN drive. Even then somehow or another users have to know to REFRESH
to get updates of changed information.