I have a web forms app which has a piece of jquery that generates a set of inputs, sets the names and ID's correctly to the web forms type names and ID's.
Yet when i post the form back to the server, i cannot find any of those controls with FindControl
, though i am able find the original control that is part of the form that the other inputs are clone
d from.
I have attempted to use FindControl
and used a Recursive version of FindControl
that i have created, but nothing can be found. Do i have to go down the Request.Form
route, or am i missing something?