<%
Set fp_conn = Server.CreateObject("ADODB.Connection"
Set fp_rs = Server.CreateObject("ADODB.Recordset"
fp_conn.Open Application("Mail-List_ConnectionString"
SQL_String = "Select * From [Logins] Where Login = '" & name & "' And Password = '" & pass & "';"
fp_rs.Open SQL_String, fp_conn, 1, 3, 1 ' Note 2 = Table
' What are the other options for the bottom line
fp_conn, 1,3,1
I can't find anything in Help or learnasp.com
TIA DougP, MCP
Visit my WEB site to see how Bar-codes can help you be more productive
Set fp_conn = Server.CreateObject("ADODB.Connection"
Set fp_rs = Server.CreateObject("ADODB.Recordset"
fp_conn.Open Application("Mail-List_ConnectionString"
SQL_String = "Select * From [Logins] Where Login = '" & name & "' And Password = '" & pass & "';"
fp_rs.Open SQL_String, fp_conn, 1, 3, 1 ' Note 2 = Table
' What are the other options for the bottom line
fp_conn, 1,3,1
I can't find anything in Help or learnasp.com
TIA DougP, MCP
Visit my WEB site to see how Bar-codes can help you be more productive