Hello all,
Ok, i have now finally got my connection to my server..... how can i display the records from thetable?
The code below is as far as i have got , how can i display one of the fields in the table. for example "Cand_First_Name"?
Thankyou.
JNR
<%@LANGUAGE="VBSCRIPT"%>
<!--#include file="../Connections/audit.asp" -->
<%
Dim Recordset1
Dim Recordset1_numRows
Set Recordset1 = Server.CreateObject("ADODB.Recordset")
Recordset1.ActiveConnection = MM_audit_STRING
Recordset1.Source = "SELECT * FROM dbo.Adv_Candidates_AUD"
Recordset1.CursorType = 0
Recordset1.CursorLocation = 2
Recordset1.LockType = 1
Recordset1.Open()
Recordset1_numRows = 0
%>
<body>
hello
<% %>
</body>
<%
Recordset1.Close()
Set Recordset1 = Nothing
%>