C
Christian H
Hi!
I think I remember somewhere that using request.form was a bad idea (I can't
say I remember why).
So I'm wondering: What is the best way to retrieve form values? Is
request.form the best way, or request.params the best way?
Or is it best to get the values by referencing directly to my controls, such
as:
textbox example: String val=mytextBox.text
In my case, I'm using x dynamically created controls, so I'd have to loop
through all of the controls of my page, check what kind of control it is,
then get the data.
I think I remember somewhere that using request.form was a bad idea (I can't
say I remember why).
So I'm wondering: What is the best way to retrieve form values? Is
request.form the best way, or request.params the best way?
Or is it best to get the values by referencing directly to my controls, such
as:
textbox example: String val=mytextBox.text
In my case, I'm using x dynamically created controls, so I'd have to loop
through all of the controls of my page, check what kind of control it is,
then get the data.