You can remove step headers by setting the ShowStepHeader property to False.
In Design View
Complete the following steps:
In Source View
Add ShowStepHeader="False" to the <cc1:C1Wizard> tag so that the markup appears as follows:
<cc1:C1Wizard ID="C1Wizard1" runat="server" ShowStepHeader="False">
In Code View
In Code view, add the following code to the Page_Load event:
To write code in Visual Basic
Visual Basic |
Copy Code
|
---|---|
C1Wizard1.ShowStepHeader = False |
To write code in C#
C# |
Copy Code
|
---|---|
C1Wizard1.ShowStepHeader = false; |