I have an asp.net wizard control with the "finish" button defined in the FinishNavigationTemplate. I would like to access that button in code to give it focus if finishing the wizard does not complete.
I've tried doing a FindControl on the WizardStep like so:
Button b = (Button) wsReviewOrder.FindControl("FinishButton");
I've tried doing a FindControl on the entire Wizard control like so:
Button b = (Button) wCheckout.FindControl("FinishButton");
Neither of these worked for me.