vote up 0 vote down star

Hi, When my classic asp page gets to this line of code

Dim cnn As ADODB.Connection

it throws an error http 500. I suppose ado is not correctly installed

Any ideas?

flag

36% accept rate
Is this line part of asp page? If so, this is not how it should be. – shahkalpesh Jul 3 at 6:12
well, the actual line is: <% Dim cnn As ADODB.Connection %> – Csharp Jul 3 at 12:24
1  
enable classic asp errors to get a more details geekswithblogs.net/lance/archive/… – Shay Erlichmen Jul 3 at 22:48

2 Answers

vote up 0 vote down

I doubt that ADO is not installed correctly. Try connecting via the Universal Data Link. You can follow the directions here. http://www.vbrad.com/article.aspx?id=81

You should be able to see whether you can connect or not. If not, you'll get a much more detailed message than you got from ASP.

link|flag
vote up 1 vote down

VBScript doesn't let you specify the type - everything is a variant so your code should read

Set cnn = Server.CreateObject("ADODB.Connection")

link|flag
Correct. Dim cnn : Set cnn = Server.CreateObject("ADODB.Connection") is more likely what you want... – Funka Nov 11 at 3:54
Who dim's anything in vbscript. It's not like you've got option explicit or anything. – Bryan Waters Nov 12 at 23:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.