Reputation: 480
I have an excel file which I want to embed into my html webpage. Meaning, I want to directly show the spreadsheet onto my webpage as plain text where others can see it.
Upvotes: 3
Views: 15097
Reputation: 11
You can generate embedded iframe tag from excel file by going to... File>Embed>Generate and then pasted the generated iframe tag in your html web file.
Upvotes: 1
Reputation: 17655
what about this:
by using tag u can embed ur excel file into web page
also u can changes & add parameters like following code
example:
<object
width = 900
height = 500
id = 'excel'
classid = 'CLSID:0002E510-0000-0000-C000-000000000046' VIEWASTEXT>
<param name=DisplayTitleBar value=true >
<param name="DataType" value="CSVURL">
<param name="AutoFit" value="0">
<param name="DisplayColHeaders" value="1">
<param name="DisplayGridlines" value="1">
<param name="DisplayHorizontalScrollBar" value="1">
<param name="DisplayRowHeaders" value="1">
<param name="DisplayTitleBar" value="1">
<param name="DisplayToolbar" value="1">
<param name="DisplayVerticalScrollBar" value="1">
<param name="EnableAutoCalculate" value="0">
<param name="EnableEvents" value="0">
<param name="MoveAfterReturn" value="1">
<param name="MoveAfterReturnDirection" value="0">
<param name="RightToLeft" value="0">
</object>
Upvotes: 2
Reputation: 912
Open that excel file and save it as html... i think you can use the code there... If you also need to do some editing in your web page... it will be a little more difficult
Upvotes: 1