How to find Controls In Wizard Navigation Steps
Sometimes we need to find a control from Wizard navigation steps. For that we need to use FindControl() method but we fail in this case, as we always get null when using WizardId.FindControl(“ControlId”). Why? Because when ASP.NET adds the navigation area controls to the wizard control, it adds a prefix onto the control name. So […]