Forms - File Streaming
I have a file (file A) and say its contents are
A B C
D E F
G H I
I read in each line and put the values of the line into a form and then call another asp page(file B) to process the form. What is the best way of going about this.
Code looks something like this...
While not fileA.EOF
line= READ FIRST LINE INTO VARIABLE THEN AN ARRAY
<body onload=document.myform.submit();>
<form name=myform>
<input type=hidden name=val1 value=A>
<input type=hidden name=val1 value=B>
<input type=hidden name=val1 value=C>
</form>
Wend
This causes me problems as how do you post 3 different forms(there are 3 lines in this example file) to
the same page in one rendering of the page?
Frames does not seem to be the solution.
Thanks,
Laeg
|