Link to home
Start Free TrialLog in
Avatar of Webboy2008
Webboy2008

asked on

asp.net wizard

I try to get active step name and index when it is on load or next / prev button is clicked.
However, look like asp:wizard does not really work to show active name/step.

Can you show me how to do it? Or anyone found the issues?

<WizardSteps>
            <asp:WizardStep  ID="StepPolicyType" runat="server" title="Policy Selection" >
             <uc4:PolicyTypes ID="PolicyTypes1" runat="server" />
            </asp:WizardStep>
            <asp:WizardStep ID="StepShortTermLocation" runat="server" title="Short Term Location(s)" >
            <uc2:ShortTermLocations ID="ShortTermLocations1" runat="server" />
            </asp:WizardStep>
            <asp:WizardStep ID="StepShortTermStunts" runat="server" title="Short Term Shunts" >
            <uc3:ShortTermStunts ID="ShortTermStunts1" runat="server" />
             </asp:WizardStep>
            <asp:WizardStep ID="StepShortTermGLandAL" runat="server" Title="Short Term GL and AL" >
               <uc5:ShortTermGLandAL   ID="ShortTermGLandAL1" runat="server" />
            </asp:WizardStep>
            <asp:WizardStep ID="StepShortTermProductionEquipment" runat="server" Title="Short Term Production and Equipment" >
            <uc1:ShortTermProductionEquipment ID="ShortTermProductionEquipment1" runat="server" />
            </asp:WizardStep>
           <asp:WizardStep ID="StepShortTermFinish" runat="server" StepType="Finish" Title="Finish">
              <uc6:FinalReviewItems   ID="FinalReviewItems1" runat="server" />
            </asp:WizardStep>
            <asp:WizardStep ID="StepShortTermComplete" runat="server" StepType="Complete" Title="Complete">
            <uc7:ThankMessage ID="ThankMessage2" runat="server" />
            </asp:WizardStep>
        </WizardSteps>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of Irzana
Irzana
Flag of Sri Lanka image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial