Hi Imar I still have not solved this problem
<form id="form1" runat="server">
<div>
<asp:CheckBox ID="CheckBox1" runat="server" AutoPostBack="True" Text="Show Panel" OnCheckedChanged="CheckBox1_CheckedChanged" />
<asp:Panel ID="Panel1" runat="server" Visible="False">
<asp:Wizard ID="FavoriteLanguage" runat="server" ActiveStepIndex="0" Width="500px">
<WizardSteps>
<asp:WizardStep runat="server" title="About you">
<asp:Label ID="Label1" runat="server" Text="Type your name"></asp:Label>
<asp:TextBox ID="yourname" runat="server"></asp:TextBox>
</asp:WizardStep>
<asp:WizardStep runat="server" title="Favorite Language" StepType="Finish">
<asp:DropDownList ID="favouriteLanguage" runat="server">
<asp:ListItem>C#</asp:ListItem>
<asp:ListItem>Visual Basic</asp:ListItem>
<asp:ListItem>Css</asp:ListItem>
</asp:DropDownList>
</asp:WizardStep>
Protected Sub Wizard1_FinishButtonClick(sender As Object, e As WizardNavigationEventArgs) Handles FavoriteLanguage.FinishButtonClick
Result.Text = "Your name is " & yourname.Text
Result.Text &= "<br />Your Favorite language is " & FavoriteLanguage.SelectedValue
End Sub
Sorry for being a nusience But I am determined to do this and will carry on with the rest of the exercises.

Thank you