[thelist] Beginner's ASP...

Ryan Finley RyanF at SonicFoundry.com
Thu Apr 12 13:04:18 CDT 2001


I am trying to execute this code:

<%
Dim oConn

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

oConn.Open "DSN=Education"

oConn.Close

%>


Try this:

<%
Dim oConn
Set oConn = Server.CreateObject("ADODB.Connection")

Call oConn.Open("Education", "sa", "")
Call oConn.Close
%>


	Ryan Finley
	President - SurveyMonkey.com (http://www.surveymonkey.com)




More information about the thelist mailing list