passing a DropdownList value to another wizard step?

  • Thread starter Thread starter Andy B
  • Start date Start date
A

Andy B

I have a wizard that has 3 wizardSteps. The first one is selecting a
NewsArticle from the combobox to edit. The second wizardStep (pressing next)
loads the whole database record into a form. The third step would be for
them to confirm the changes before submitting. I know how to get the confirm
part to work as well as the update part itself but how would I get the
combobox step to load the whole record into a form in the next wizardStep?
 
I have a wizard that has 3 wizardSteps. The first one is selecting a
NewsArticle from the combobox to edit. The second wizardStep (pressing next)
loads the whole database record into a form. The third step would be for
them to confirm the changes before submitting. I know how to get the confirm
part to work as well as the update part itself but how would I get the
combobox step to load the whole record into a form in the next wizardStep?

Hi Andy,

Could you not put the combo box value into the query string, or into
session?

Another, more complex apprach would be to write the value using
JavaScript into a hidden field value then pick it up as step 2 loads.

HTH,

Jon

www.nantwichonline.com/pubs
 
Back
Top