Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Posting form data

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I have an order form on a web page and i want to have people fill it in then i want to be able to click a "print form button" and have the information sent to another web page for printing. Can someone show me hhow to get the information to the printable web page.

Thanks
 
Build a second page in ASP (there are other languages you could use too) and in that page (if you use ASP) grab the entered data using <%Request.Form(&quot;TextboxNameHere&quot;)%>. To display it use <%Reponse.Write(Request.Form(&quot;TextboxNameHere&quot;))%>. To format it use your regular HTML tags outside of the <% and %> signs.

Hope this helps

AJ
 

Read this: Thread216-248664

The script I wrote there does exactly what you need.

good luck
 
In reply to the ASP coding........I am using this code on a CD so it has to be in HTML/Javascript........Can you Help??

The code that Starway mentioned creates a new page each time................I need to use a pre-formatted page with my own graphics etc. Can it be done, if so can you help??

Thanks
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top