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)