Forum Moderators: open
Response.Write"<input type='text' name='title"& i &"'' size='40'>"
Then I wish to collect the data
I have tried all sorts, but this is bugging me
it seems close
dim title
For i = 1 To NumberItems
title = Request.Form("title"""& i &"")
Response.Write(title)
Response.Write("<hr>")
Next
using the following works but it does not loop, so i know the vars ar passing
title = Request.Form("title1")
This would be quite easy in php. :(
Cheers