I am trying to display an excel spreadsheet inside a webpage using iframe. I need the page embedded inside the webpage and not Opening on a different window. Here are the two a[proaches I have tried:
Approach 1:
<!DOCTYPE html>
<html>
<body>
<IFRAME frameBorder=0 iframe
name="iframe" height=700 marginHeight=0 marginWidth=0
scrolling=auto
src="REVENUE.xls" width=100%></IFRAME>
</body>
</html>
The above opens the Excel in A different Window;
Approach 2:
<!--webbot bot="HTMLMarkup" startspan -->
<IFRAME src="REVENUE.xls" width="600" height="300" hspace="0"
vspace="0" frameborder="0" scrolling="auto"></IFRAME>
<!--webbot bot="HTMLMarkup" endspan -->
Same case to the second Approach. Is it a Problem with My Browser or what I am using Mozilla fireFox and excel 2003.
