Problem using panel controls in form

  • Thread starter Thread starter simon ames
  • Start date Start date
S

simon ames

Hi

I have a large form (over 150 feilds) that i have decided to break up into
sections for using the panel control.

I show and hide parts of the form by changing the visibility of the panel
controls as the user progresses through the form.

When the user reaches the end of the form i intend to request all of the
information and build an email.

My problem is when i request the form infomation it only returns the values
from the previous visible panel and none before it.

Thanks in advance

Simon Ames
 
Hi

Ive solved this. I was using request.form to try and collect the information
rather than refering to the feild
with dot.syntax.

Was using
request.form("textfeild")

Now using
textfeild.text

Thanks

Simon Ames
 
Back
Top