Do you want to use server-side code, e.g. ASP, or client-side?
With ASP you could have the link as:
Code:
<a href="myPage.asp?name=joe">Go to form</a>
and then in your ASP page, assuming VBScript
:
Code:
<input type="text" value="<% Server.HTMLEncode(Request.QueryString("name") %>">
Using client-side you would need to parse teh location.search property and use the DOM methods to set the value of the textbox.
--
Joe