please enter account number to be updated :<input type="text" name="criteria">
<input type="submit" value="submit" name="submit">
WHERE account=" & criteria
(execute query here)
%>
<form method="post" action="page3">
<input type="text" name="field1" value="<% =query("field1"

%>">
<input type="text" name="field2" value="<% =query("field2"

%>">
<input type="Hidden" name="Account" value="="<% =query("accout"

%>">
<input type="submit" name="UPDATE" value="Submit" >
</form>
<%
close database here
%>
Page 3
<%
Dim query, field1, field2, account
account = request.form("account"

field1 = requets.form("field1"

field2 = requets.form("field2"

(Open database here)
query = "UPDATE
SET field1='" & field1 & "' and field2='" & field2 & "' WHERE account=" & account
(execute query here)
that should do it for you, it may need slight changes, but it is the general idea, or you can place all three on one page, using hidden values to determint which part you wish to use