Here is a quick example of how to populate information
from one form to the next. This is one way to do it, if
you don't like it you can always try using session variables.
originalform.asp
<%
' place this at the top of the originalform.asp
if Request.Form("select"

<>"" then
Response.Redirect(Request.Form("select"

)
end if
%>
<form method="post" action="editpageform.asp">
<input type="text" name="location_name">
<input type="text" name="location_address">
<input type="text" name="location_city">
<input type="text" name="location_zipcode">
<input type="text" name="location_phone">
<input type="text" name="location_directions">
<input type="submit" name="Submit" value="Add New Location">
<input type="reset" name="Reset" value="Clear Form">
</form>
editpageform.asp
'*** Get data from form
location_name = Request.Form("location_name"

location_address = Request.Form("location_address"

location_city = Request.Form("location_city"

location_zipcode = Request.Form("location_zipcode"

location_phone = Request.Form("location_phone"

location_directions = Request.Form("location_directions"
<form method="post" action="editpageform.asp">
<input type="text" name="location_name" value="<%=location_name%>">
<input type="text" name="location_address" value="<%=location_address%>">
<input type="text" name="location_city" value="<%=location_city%>">
<input type="text" name="location_zipcode" value="<%=location_zipcode%>">
<input type="text" name="location_phone" value="<%=location_phone%>">
<input type="text" name="location_directions" value="<%=location_directions%>">
<input type="submit" name="Submit" value="Add New Location">
<input type="reset" name="Reset" value="Clear Form">
</form>
Hope this helps,
Scott