How do you get to retrieve all the textboxes' contents when the user clicks the Send button. Any code would be great!!
Printable View
How do you get to retrieve all the textboxes' contents when the user clicks the Send button. Any code would be great!!
Hi,
This will actually list all the "named" objects on the form.
Al.Code:For Each item in Request.Form
Response.Write item
Response.Write Request.Form(item) & "<br>"
Next