dim conn, constr, rs set conn = createobject("ADODB.Connection") set rs = createobject("ADODB.Recordset") connstr = "Provider=Microsoft.jet.oledb.4.0; Data Source=e:\mediadisplay.mdb"
conn.open connstr
set rs = conn.execute("select * from users where user='" & request.querystring("user") & "';")
StrUse = rs("something")
%>
... But in VB.NET. I can't for the life of me find anything that just gets one record, it gets a "Repeater" and I can't assign any of that to a string variable.. please help.