Hell everyone
I am doing something that I have done many times and not had a problem, I am simply trying to get the text from some textboxes after a button click.
I have all of the text boxes delared the same:
<asp:TextBox ID="Name" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="CAddress" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="City" runat="server"></asp:TextBox>
</td>
<td>
<asp:TextBox ID="State" runat="server"></asp:TextBox>
</td>
etc..
Dim CName ...
Go to the complete details ...