Try this:
----
Here is the form to enter the url:
-----------
<form method="post" action="buildurl.asp">
<input type="text" name="NEWURL">
<input type="submit" name="submit" Value="submit">
</form>
------------
Here is the ASP PAGE THAT COLLECTS IT
---------------------------------------
<% @LANGUAGE="VBSCRIPT"
ENABLESESSIONSTATE = FALSE
%>
<%
Response.Buffer = TRUE
%>
<%
Dim BUILDURL
BUILDURL = Request.Form("NEWURL")
' Above is where we decide what textbox we want to pick
%>
<a href="<%=BUILDURL%>">New Link</a>
Thats it! Easy Huh?
Regards,
Spoon
"uohh look at me, ive got a signature, uohh look at me!" :)