I have an asp.net wizard assistant with the "finish" button defined in FinishNavigationTemplate . I would like to access this button in the code to give it focus if the wizard is not completed.
I tried to make FindControl on the WizardStep as follows:
Button b = (Button) wsReviewOrder.FindControl("FinishButton");
I tried doing FindControl throughout the control wizard like this:
Button b = (Button) wCheckout.FindControl("FinishButton");
None of them worked for me.
Aaron source share