Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

xls in html

Status
Not open for further replies.

alechko

Technical User
Jul 28, 2002
32
IL
I want to link to an xls file from html file.
I would like that the xls file will open up as embedded spreadshit inside the html.
Also, the xls file is always updating so, I can not save it as html

any suggestions?
 
That has nothing to do with Office as such, but HTML programing.
I suggest you post your question in that forum, you will have a better chance of getting answers

Marc
[sub]If 'something' 'somewhere' gives 'some' error, expect random guesses or no replies at all. Please specify details.
Free Tip: The F1 Key does NOT destroy your PC!
[/sub]
 
Sorry, I did not explained myself correctly.
I want that in the middle of my html, I will see the xls file.

I do not want to open an xls file stored in the server.
 
I am using frames already, and targetting the file to "main"
I tried also to target it to "_main" but with no success
 
The target page must have the .xls extension it is very limited. The only other way is to use excel as a data source and read the data. For this I would use "asp"

<HTML>
<TITLE>First Frame Page</TITLE>

<FRAMESET COLS=&quot;50%,50%&quot;>
<FRAME SRC=&quot;test1.html&quot;>
<FRAME SRC=&quot;test1.xls&quot;>
</FRAMESET>

</HTML>

Jim
 
Tried it, not working.
It is openning the xls as an independent application
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top