what dotnetgnat means is that in the same page you can open a connection, write different queries (update, delete, insert...) referring to different tables in the same db or even in different db if you open more than one connection, and then execute all queries.
in your case, assuming that you have a form with two controls "user", "password", and two tables, one with login users and the other with a login log
you can
dim COnn, strSQL1, strSQL2,
set conn = server.createobject("ADODB.connection")
'update query that updates the user's last login date
strSQL = "update loginlog SET lastlog = '" & date & "' where username = '" & request("user") & "' and password = '" & request("password") & ""
'insert query to add a new login
strSQL2 = "insert into logintable (user, password) values ('" & request("user") & "' , '" & request("password") & "')"
now execute the queries
conn.execute strSQL1
conn.execute strSQL2
response.write("All done!")
conn.close
set conn = nothing
While this example does not make much sense as you would not log a user's login and then create his own login, it should however give you a hint on how to run different queries in the same page.
CHeers
QatQat
Life is what happens when you are making other plans.