I have a very simple code snitppet that looks like this:
<asp:Label Text="$Name$" runat="server" AssociatedControlID="$txtName$" />
<asp:TextBox runat="server" ID="$txtName$" />
<br />
What I was hoping was that the $txtName$
would be changed in both places, but it doesn't, only the first instance is changed and I can't even tab over to the second instance.
Is there a work around to this?