Hi,
I have a <asp:Wizard> control with 6 or so steps. In the first 3 steps, I want to hide the default Wizard navigation (Next button, etc.), as each WizardStep's contents will handle that. For the last 3 or so steps, if possible, I want to use the built-in navigation.
I've modified the <StepNavigationTemplate> contents, but that alone doesn't cut it, because it affects all steps. Here are my options:
- Find a way to dynamically show or hide the StepNavigation from the codebehind. (I feel like this might be best -- is it possible?)
 - Use 
StepTypewith<StartNavigationTemplate>,<StepNavigationTemplate>, and<FinishNavigationTemplate>to switch between navigation options (marking multiple steps as "start" or "finish" feels like it's abusing the mechanism) - Switch to a 
<asp:MultiView>and handle navigation manually (I'd rather not do this) 
Any other ideas? Thanks.