
March 30th, 2000, 03:20 AM
|
|
Contributing User
|
|
Join Date: Dec 2002
Posts: 14,575
  
Time spent in forums: < 1 sec
Reputation Power: 22
|
|
|
<i><b>Originally posted by : Chris Snider (csnider@worldnet.att.net)</b></i><br />David,<br /><br />Use the following code to read the input form and simply output the data:<br /><br />Dim i ' As Integer<br />for i = 1 to Request.Form.Count<br />Response.Write "Field:" & Request.Form.Key(i) & " - " & Request.Form.Item(i) & "<BR>"<br />next<br /><br />If you need further explanation or have other questions, please email me<br /><br />Chris Snider<br /><br />------------<br />David at 3/24/2000 10:39:28 AM<br /><br /><br />This might be a really dumb problem, but id like to take a form with multiple varriables and post it to another ASP page and just be able to view the results. Id rather not send it to a database, I just want to take the variable, post it to a ASP page and then view it after its submitted. the information does not need to be saved in any way. <br /><br />Dave<br />
|