I am trying to read as web-page content an excel file. I thought going through vbscript in classic ASP.
But ...The code is taking so long to open and when it works, the page comes in blank! That should I do please?
<%
Dim xls
response.ContentType="application/vnd.ms-excel"
Set xls = CreateObject("Excel.application")
xls.Visible = False
xls.Workbooks.Open("R:\wb\excel\Middleware.xls")
%>
And I tried also:
<%
Set opena = CreateObject("Excel.Application")
opena.Application.Workbooks.Open "R:\wb\excel\Content.xls"
%>