devxlogo

Displaying Excel Information in ASP Pages

Displaying Excel Information in ASP Pages

Question:
How can ASP query an Excel sheet and get all the books’ names that reside in that Excel document using ADO (or any other way)? I want to display all contents of the Excel sheet on a Web page using ASP.

Answer:
You will need to use the Excel Object model and write your code to extract the book’s sheet names.

To do this, first make sure Excel is installed on your Web Server (or at least registered properly). Then use the following code to extract sheet names from a given Excel file:

   Dim i, objExcel   Set objExcel = Server.CreateObject(“Excel.Application”)       objExcel.Workbooks.Open “filename”    For i = 1 To objExcel.ActiveWorkbook.Sheets.Count        Response.Write objExcel.ActiveWorkbook.Sheets(i).Name    Next    objExcel.ActiveWorkbook.Close False    objExcel.Quit    Set objExcel = Nothing

You can extend the above code to get whatever else you want from the Excel spreadsheet. If that’s what you want you may be better off first having Excel save the spreadsheet as an HTML document and then displaying the document in your application.

devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist