Provider=Microsoft.Jet.OLEDB.4.0

G

Guest

I am having some issues running an asp.net app on windows 2000 with .net
Framework 1.1. The win 2000 server is a test server and the app was tested
successfully approx 6 months ago on this server, the part of that app that is
now failing is:

Dim oleConnString As String = "Provider=Microsoft.Jet.OLEDB.4.0;" _
& "Data Source=C:\Inetpub\wwwroot\BeneFeedProcessor\bin\bene1.xls;" &
"Extended Properties=Excel 8.0;"
'*************************************************
' Create the connection object
Dim oleConn As New OleDbConnection(oleConnString)
' Open connection with the database.
oleConn.Open()

It fails on the open statement, the system is setup to auto install patches,
could there be a patch that may be causing this issue?

Thanks,
 
D

Dave Patrick

Try asking them here.

http://www.microsoft.com/communitie...764-9c91-44e8-8275-d6c5e74bd544&lang=en&cr=US

--

Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
|I am having some issues running an asp.net app on windows 2000 with .net
| Framework 1.1. The win 2000 server is a test server and the app was tested
| successfully approx 6 months ago on this server, the part of that app that
is
| now failing is:
|
| Dim oleConnString As String = "Provider=Microsoft.Jet.OLEDB.4.0;" _
| & "Data Source=C:\Inetpub\wwwroot\BeneFeedProcessor\bin\bene1.xls;" &
| "Extended Properties=Excel 8.0;"
| '*************************************************
| ' Create the connection object
| Dim oleConn As New OleDbConnection(oleConnString)
| ' Open connection with the database.
| oleConn.Open()
|
| It fails on the open statement, the system is setup to auto install
patches,
| could there be a patch that may be causing this issue?
|
| Thanks,
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top