aspx_beginners thread: Multiple values in form variables
In ASP, it was possible to access multiple values for a single form variable by Request.Form("name")(i). From what I have read so far in .Net, this is not possible because Request.Form["name"] returns a string, not an array. Is there a workaround in .Net without using String.Split?
|





