Greetings.
I encountered a problem in accessing the controls I placed inside the TemplatedWizardStep tag. Here's the code snippet:-
<asp:Wizard ID="wizCreateBulk" runat="server" DisplaySideBar="false">
<WizardSteps>
<asp:templatedWizardStep ID="Step1" runat="server" Title="Select Recipient Method" StepType="start">
<ContentTemplate>
<div>
<span>Enter Name: </span>
<span><asp:TextBox ID="txtName" runat="server" />
</div>
</ContentTemplate>
</asp:TemplatedWizardStep>
</WizardSteps>
</asp:Wizard>
Then, in the vb side, when I tried to do txtName.focus() it returns control not found. I also tried Step1.FindControl("txtName") which returns System.NullReferenceException.
Please advise. Thanks.