Here is some example Code
'Add this to your .html page
<form method= post action="your.asp">
<input type="text" name="Pass" value size="20"></input>
<input type=submit></input>
---------------------------------------
'Create the "your.asp" you called in your html file
<html> 'use normal html
<% my_pass = request("Pass") %> 'Server side VBS
<%
SQL_String = "SELECT info.login ..."
SQL_String = SQL_String & " where((info.pass) = my_pass);"
set conn = server.createobject("adodb.connection")
conn.open "dsn=loginform" 'Your Database
set rs = conn.execute(SQL_String)
while not rs.eof
If LCase(rs("login")) <> "root" then
response.write "<br><b>Login:</b> " & rs("login")
Else
rs.movenext 'goes to the next record
Wend
%>
<p>All login names use Password: <% =my_pass %>
</html>
------------------------------
This is sample BS code that will query a database and print out all Login Names that have the Password you send to the .ASP except the Login of ROOT.
This should help you on your way so you can get a feel of what your in for.
Brandon
SQL in VBScript sat inside HTML
It don't get much easier.
I'm a crap programmer, but even I can use asp's
Blummin' smashin they are - I'd reccomend 'em to anybody!
Cheers 'n' beers
Skeen