Murray Brown
asked on
VB.net read Excel 2007 and later
Hi
I am using the following VB.net code in my ASP.net web app to read an Excel 97 to 2003 .xls file. I want it to work with
2007 and later rather. What do I change?
Thanks
I am using the following VB.net code in my ASP.net web app to read an Excel 97 to 2003 .xls file. I want it to work with
2007 and later rather. What do I change?
Thanks
Protected Function ExcelConnection() As OleDbCommand
Try
' Connect to the Excel Spreadsheet
'Dim xConnStr As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
'"Data Source=" & Server.MapPath("~/ExcelImport.xls") & ";" & _
'"Extended Properties=Excel 8.0;"
Dim sMinAndSecond As String = Me.Second_Minute_of_Upload.Text 'workaround to stop file locking on the same name
Dim xConnStr As String = "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & Server.MapPath("~/Temp/ExcelImport" & sMinAndSecond & ".xlsx") & ";" & _
"Extended Properties=""Excel 8.0;HDR=YES;IMEX=1"""
' create your excel connection object using the connection string
Dim objXConn As New OleDbConnection(xConnStr)
objXConn.Open()
' use a SQL Select command to retrieve the data from the Excel Spreadsheet
' the "table name" is the name of the worksheet within the spreadsheet
' in this case, the worksheet name is "Members" and is expressed as: [Members$]
Dim objCommand As New OleDbCommand("SELECT * FROM [Sheet1$]", objXConn)
Return objCommand
Catch ex As Exception
Response.Write("There was an error connecting to the Excel spreadsheet! " & Err.Description & " xk6")
End Try
End Function
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER