View Single Post
  #2 (permalink)  
Old 05-17-2005, 02:05 PM
ADAM Web Design's Avatar
ADAM Web Design ADAM Web Design is offline
WebProWorld 1,000+ Club
 
Join Date: Dec 2003
Location: Toronto, Ontario, Canada
Posts: 2,181
ADAM Web Design RepRank 1
Default

I can't think of a good way to retrieve the information for the second form bia any means other than to use server-side programming.

Here's a quick and not-optimized ASP sample for the second form:
Code:
<%
Dim Customer_Name
Customer_Name = trim (Request.Form ("Customer_Name")
%>
<input type="hidden" name="Customer_Name" value="<% = Customer_Name %>" />
This would vary depending on which server-side programming language you used.

There would be a way to do this using Javascript, but then you'd have to rely on people enabling it.
Reply With Quote