Since I have no idea what information you are trying to extract, modify, insert or delete;
all I can do for you is to write a generic connection routine. Change the part in red to
the actual path of the database. Provided that the variable information you provided is
accurate, this will give you a list of all user names and passwords (if the passwords are
<%
Response.Write "<table align=""center"" border=""0"" width=""50%"" cellspacing=""0"" cellpadding=""0"">" & vbNewLine &_
" <tr>" & vbNewLine &_
" <td width=""100%"" bgcolor=""cyan"">" & vbNewLine
" <table align=""center"" border=""0"" width=""100%"" cellspacing=""2"" cellpadding=""2"">" & vbNewLine &_
" <tr>" & vbNewLine
set my_Conn=Server.CreateObject("ADODB.Connection")
my_Conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=path\dbname"
strSql = "SELECT UNAME, PASSWORD FROM " & strTablePrefix & "CLIENT_LEADS"
set rsDB=my_Conn.Execute(strSql)
rsDB.movefirst
Do until rsDB.EOF
Response.Write " <td width=""50%"" bgcolor=""white"">" & vbNewLine &_
" <br>" & rsDB("UNAME") & "</td>" & vbNewLine & _
" <td width=""50%"" bgcolor=""white"">" & vbNewLine &_
" <br>" & rsDB("PASSWORD") & "</td>" & vbNewLine
" </tr>" & vbNewLine & _
" <tr>" & vbNewLine
rsDB.movenext
Loop
rsDB.close
set rsDB=nothing
Response.Write " </tr>" & vbNewLine & _
" </table>" & vbNewLine & _
" </td>" & vbNewLine & _
" </tr>" & vbNewLine & _
"</table>" & vbNewLine
Response.End
%>