Hello Anantham
If this is the first time that you are dealing with ASP/Excel then you will be happy to hear that, we can use same ADODB connection set to access Excel files.
Connect it using following connection string
Code:
str_xl_datasource="Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & server.MapPath(".") & "\excelfile.xls;"& _
"Extended Properties=""Excel 8.0;HDR=NO"""
After this you can easily retrieve the excel data by just giving the
query
Code:
"SELECT * FROM [sheet1$]"
Hope this will help you
Shibu Narayanan
Software Associates