Classic ASP BasicsFor beginner programmers starting with "classic" ASP 3, pre-".NET." NOT for ASP.NET 1.0, 1.1, or 2.0
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Classic ASP Basics section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
my best guess would be that you could use ActiveX to interact with the file on the client side and grab the data out before posting the data back to the server. The only other option I can think of would be to load the file using an ASP Upload type script, but you don't mention if you could process the Excel file on the server side.
If the browser permissions allow it, you can run ActiveX on the client side to create an Excel reference t the file and then suck the data from there onto your webpage and then post that page to your server. http://www.greggriffiths.org/webdev/both/excel/ covers a similar idea.