I'm trying to automatically fill in a few text boxes on a Form. I understand
the data..via a URL can be displayed via a querystring. What lines of code
do I need to fill in the text boxes?

Thanks

Re: Help with Query String by clintonG

clintonG
Mon Mar 27 16:17:08 CST 2006

<%
dim id
id = Request.QueryString("id")
%>

<input type="text" value="<%= id %>" />

<%= Clinton Gallagher
NET csgallagher AT metromilwaukee.com
URL http://clintongallagher.metromilwaukee.com/


"Arne Beruldsen" <ArneBeruldsen@discussions.microsoft.com> wrote in message
news:FDAB3175-ED5D-48C4-A09A-5C94E6C72592@microsoft.com...
> I'm trying to automatically fill in a few text boxes on a Form. I
> understand
> the data..via a URL can be displayed via a querystring. What lines of
> code
> do I need to fill in the text boxes?
>
> Thanks