Jet & Windows 2003



I have a asp.net web app that I have moved over to a new Windows 2003
Server. I am stuck right now with the web app not being able to open a
small Access DB. This all works on two different XP boxes.

It is getting an error on the .Open statement. Error message is cryptice
and doesn't really tell me anything. Is there a general issue with Jet 4.0
on 2003? Suggestions, ideas on where to look?

I have downloaded and installed Jet 4.0 and SP8.

Thanks,
Greg
'** make connection

Dim objConnection As OleDbConnection = New OleDbConnection _

("Provider=Microsoft.Jet.OLEDB.4.0;Data source=" &
Server.MapPath(ConfigurationSettings.AppSettings("ForSaleListMDB")) &
";Mode=Read")

'** open connection

objConnection.Open()




.