1
Reply

Loop through controls in wizard step

Mata

Mata

Nov 11 2011 3:57 AM
2.9k
How can I indentifiy all textbox controls in specific step in wizard control (without expicit FindControl).
I need some loop mechanism if possible.

structure of wizardstep is something like this

[code]
<asp:TemplatedWizardStep ID="Step2" runat="server" Title="Step2">
  <ContentTemplate>
  <div class="StepMain">
  <table class="style1">
  <tr>
  <td class="style11">
  Street</td>
  <td>
  <asp:TextBox ID="textbox1" runat="server" Width="180px"></asp:TextBox
  ...   [/code]

Answers (1)