J
JJ
I want to make one or other display panel visible on the 'complete' step of
a createuserwizard.
I've customised the complete step and have the id's of the panels.
I've tried:
Control panelControl;
panelControl = CompleteWizardStep1.FindControl("ValidationSent");
panelControl.Visible = false;
panelControl = CompleteWizardStep1.FindControl("ValidationNotSent");
panelControl.Visible = true;
But it gives me a null reference at the "panelControl.Visible = false;"
line.
Is there any way of doing this?
JJ
a createuserwizard.
I've customised the complete step and have the id's of the panels.
I've tried:
Control panelControl;
panelControl = CompleteWizardStep1.FindControl("ValidationSent");
panelControl.Visible = false;
panelControl = CompleteWizardStep1.FindControl("ValidationNotSent");
panelControl.Visible = true;
But it gives me a null reference at the "panelControl.Visible = false;"
line.
Is there any way of doing this?
JJ