Hi,
Regarding on the Wizard control validation issue, I think it is due to the
StepNavigation buttons(move previous and move next) are set to
"CauseValidation=False" by default. And since Wizard control uses fixed
stepNavigation template by default, you can not direclty access them.
However, it provide you the feature to convert the default one to an
editable template. You can do this via the following steps:
** switch to design-view for the page
** choose the Wizard control
** in the Wizard's "Action List" dropdownlist(the arrow on the top right
side), choose "Convert to StepNavigation template"
After that, you can customize the navigation template (such as modify the
Buttons' properties) e.g.
=====================
<asp:Wizard ID="Wizard1" runat="server" ActiveStepIndex="1">
<StepNavigationTemplate>
<asp:Button ID="StepPreviousButton" runat="server"
CausesValidation="True" CommandName="MovePrevious"
Text="Previous" />
<asp:Button ID="StepNextButton" runat="server"
CommandName="MoveNext" Text="Next" CausesValidation="True" />
</StepNavigationTemplate>
<WizardSteps>
<asp:WizardStep runat="server" Title="Step 1">
</asp:WizardStep>
<asp:WizardStep runat="server" Title="Step 2">
</asp:WizardStep>
</WizardSteps>
</asp:Wizard>
======================
You can also customize some other template (such as "StartNavigation" or
"FinishNavigation" template the same way).
Hope this helps.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
---------------------------------------