Put more information on this error. Is that all it says? Have you configured your web browser NOT to display friendly HTTP Error messages? You'll need to do that first to get more detailed error messages.
I had lots of problems to get Oracle working with ASP ... Specially regarding permissions related to the IIS users on Oracle folders. I can't say that's the problem ... Also, is your ADO configured right? Have you tried to connect throu an asp page? Try a simple query first, just to make sure you're connecting.
Here's my connection config:
Code:
set objConn = server.CreateObject("ADODB.Connection")
ConnString = "Provider = MSDAORA; "
ConnString = ConnString & "Data Source = data_source_name; "
ConnString = ConnString & "User ID = user_id; "
ConnString = ConnString & "Password = password; "
objConn.open ConnString
Cheers!