Click to See Complete Forum and Search --> : Can anyone help me with form processing?
I need the addres information from my form to be integrated into some sort of label layout program.
Right now my formmail, accepts Name, Address, City State and Zip to send them a free catalog.
Is there any form processor program out there that can automatically grab the info and lay it out on labels to be printed?
If any one can help that would be of great help.
Thanks
If I understand you correctly, you would like to retrieve the info from a customer and lay it out so it can be printed?
Try something like this:
<%
Dim Name, Address, City, State, Zip
'Retrieve input from form.
Name = Request.Form(formName)
Address = Request.Form(formAddress)
City = Request.Form(formCity)
State = Request.Form(formState)
Zip = Request.Form(formZip)
'Display input to be printed
Response.Write "Name : " & Name & "<br />"
Response.Write "Address: " & Address & "<br />"
Response.Write "City: " & City & "<br />"
Response.Write "State: " & State & "<br />"
Response.Write "Zip: " & Zip & "<br />"
%>
Of course this is just an idea. You can customize it to your likings.
Regards,
Jay
buntine
07-13-2005, 09:22 AM
Generating such output will not be difficult. Do you have any ASP programming experience? We can guide you through this if necessary.
Regards.
I need this information to be layed out in some sort of labels program and each time a form is received from the web site, it automatically adds it to the label sheet.
If it could automatically print the labels once a sheet is full that would be great, but I am willing to have to do some sort of work manually.
Do you have any ASP knowledge at all? I'm not sure what you mean by "labels" program, but you can save the user input into a database, and then pull it out for printing.
buntine
07-14-2005, 10:11 PM
You can generate an HTML table that generate the same output for each cell.
With Response
.Write "<table>"
.Write "<tr>"
For i = 1 To 15
.Write "<td>"
.Write "Some Content"
.Write "</td>"
If i Mod 3 = 0 Then
.Write "</tr><tr>"
End If
Next
.Write "</tr>"
.Write "</table>"
End With
Something along the lines of that.
Regards.
buntine
07-14-2005, 10:35 PM
Please start a new thread by clicking the "New Thread" on the forum.
xeno439
08-02-2005, 01:47 PM
flash email forms (http://flashmailforms.com)
may help you, pretty interesting site
BritMiss
08-20-2005, 07:43 PM
Do you have any ASP knowledge at all? I'm not sure what you mean by "labels" program, but you can save the user input into a database, and then pull it out for printing.
Sounds like exactly what I am trying to do. I have to set up a database but all I have to work with is MS Works (doh!)
I have written JS that runs a form to capture the information, just not sure how to isolate and append it to a file
Sounds like exactly what I am trying to do. I have to set up a database but all I have to work with is MS Works (doh!)
I have written JS that runs a form to capture the information, just not sure how to isolate and append it to a file
Are you trying to do this using Javascript? If so, you're in the wrong forum. This is the ASP forum :p .
If you would like to append a user's information to a file using ASP, please start a new thread and I will be happy to help you. You should also be wary about what type of information is stored in a text file as it is easy to hack. :)
Cheers,
Jay