How to get the object collection created in runtime

codeassembler

Newcomer
Joined
Jan 22, 2004
Messages
2
Location
Italy
Hello, I've got a big problem, do someone konw waht is the best method to get the object collection in a FORM?

I tried to put this simple code...

For I = 0 To Request.Form.Keys.Count - 1
Frm = Request.
Request.Form.Get(Frm)
Next

But i found that it can't get the object that ive added in runtime.
Please help
 
I'm so sorry nothing happend... kahlua001

I've created my control in client side (input) thru javascript, then i want to get the value of thet control in server side... some1 could help me..
 
I got the same question,

I created a object from client side Javascript and wanna get the object value from server side.

the result was same as codeassembler's- it page.request.form will only get the 'form object' - as input, radiobutton, textarea and so on...

does any one know how to get the value for the object which is create by client side scripts?
 
Back
Top