Any idea why I can't anything from my table to output onto the page?
<%
Dim objConn
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.ConnectionString = "DRIVER={SQL Server}; SERVER=xxx.xxx.xxx.; DATABASE=myDB; UID=myUID; PWD=myPW;"
objConn.open
DIM sSQL
sSQL = "SELECT * FROM names"
DIM objRS
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.Open sSQL, objConn
%>
<html>
<head>
</head>
<body>
Test
</body>
</html>