Hi there,
I have a control which, on the client side, generates a number of new HTML Hidden fields using Javascript. When the page is posted back, the question is, how does one retrieve the data in these hidden fields?
The hidden fields can't implement IPostBackDataHandler because they don't exist on the server side. Thus, what I'm doing currently is accessing the Request object in 'OnInit', with code like this...
Request.Params(String.Concat(attName, i.ToString))
where 'i' indexes the hidden fields.
Any ideas on how to integerate this kind of thing better into asp.net?
Cheers,
WT.
Web dev - spending forever achieving nothing.