Hello,
I'm trying to figure out how to build a dynamic form that will do the
following:
Users have 5 forms to chose from using a radio button or drop down
list to select a form. Once they chose the form, the corresponding
fields pull up on the same page. They fill out the form and the form
is e-mailed (submit).
I have the e-mail part of this figured out to some degree, but I am
mainly concerned with how to pull up the form fields that correspond
with 1 of 5 form choices. Any ideas about this would be great! I'm
working in asp.net and javascript. Thank you.
Scott Roberts - 18 Dec 2007 20:37 GMT
You might have a look at the MultiView control. Or you could use panels and
set the visibility of each panel manually.
If you want to avoid "flicker" with these methods, you can put them inside
an AJAX UpdatePanel.
> Hello,
> I'm trying to figure out how to build a dynamic form that will do the
[quoted text clipped - 9 lines]
> with 1 of 5 form choices. Any ideas about this would be great! I'm
> working in asp.net and javascript. Thank you.
csteacy@gmail.com - 18 Dec 2007 21:51 GMT
Hello,
Thank you for your response, I'll give those ideas a try. Thanks
again!