Hi Virgil,

How 'bout setting up some hidden input boxes, filling them with the values
and reading those out in your saving routine? That way there's no labeling
needed.

For parsing the querystring variables:
simple ASP test page:
<%@ Language=VBScript %>
<%
cVar1 = Request.QueryString.Item("var1")
cVar2 = Request.QueryString.Item("var2")
%>
<html>
<body>
var1: <%=cVar1%><br/>
var2: <%=cVar2%>


</body>
</html>
calling url:
http://localhost/dnn/test/ASPTest.asp?var1=1234&var2=aaaa

Result:
var1: 1234
var2: aaaa 



greetings,
Sietse

> -----Original Message-----
> From: [EMAIL PROTECTED] 
> [mailto:[EMAIL PROTECTED] On Behalf Of Virgil Bierschwale
> Sent: dinsdag 26 december 2006 5:12
> To: [EMAIL PROTECTED]
> Subject: [NF] Input and html
> 
> I've got a page that I want to grab the variables passed in 
> the url link which are branch and unit.
> 
> TO see it in acxtion, go to http://www.virgilslist.com Click 
> on Navy Click on FF-1059
> 
> You will see a list of people in this group.
> Below that there are two fields in an input tag that say "Do 
> Not Change"
> I want to grab the branch and unit and place them in those fields..
> Then I want the user to fill in the rest of the fields and 
> click the submit button which passes the variables to another 
> page which adds them to the sql server tables..
> 
> Everythings basically working except for grabbing those two 
> fields and then sending them on down the line.
> I also would like to change those two fields from a get to a 
> say (for want of a better description), but I havent found 
> that this is possible yet.
> 
> I can grab the variables no problem, but I'm not sure how to 
> pass them to the input tag.
> 
> Anybody got any ideas ?
> 
> Thanks,
> 
> Virgil Bierschwale
> http://www.virgilslist.com
> http://www.tccutlery.com
> http://www.bierschwale.com
> http://www.bierschwalesolutions.com
> 
> --
> No virus found in this outgoing message.
> Checked by AVG Free Edition.
> Version: 7.5.432 / Virus Database: 268.15.26/601 - Release 
> Date: 12/24/2006
> 11:31 AM
>  
> 
> 
> 
[excessive quoting removed by server]

_______________________________________________
Post Messages to: ProFox@leafe.com
Subscription Maintenance: http://leafe.com/mailman/listinfo/profox
OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech
** All postings, unless explicitly stated otherwise, are the opinions of the 
author, and do not constitute legal or medical advice. This statement is added 
to the messages for those lawyers who are too stupid to see the obvious.

Reply via email to