i hope u stored ur recordset in a object.
if u know the specific record's any one fields value for example if one of ur field name is emp_name and u want the employee with name "arperry".
if u want to cull out the particular record from the table means u can directly use the sql query for that.
like this
set myconn=server.CreateObject("adodb.connection"

myconn.Open dsn
set rs=server.CreateObject("adodb.recordset"

sql="select * from employee where emp_name='arperry'"
rs.Open sql,myconn
so that u can directly get ur specific record from ur table.
if this is not suitable for ur job means try this
set myconn=server.CreateObject("adodb.connection"

myconn.Open dsn
set rs=server.CreateObject("adodb.recordset"

sql="select * from employee"
rs.Open sql,myconn
while not rs.EOF
if rs("emp_name"

="arperry' then
' print ur record
'do ur process
end if
rs.MoveNext
wend
i hope this will help u to solve ur problem
webspy