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?
It turns out that the replacement was working, but not as I typed. So I can type what I need and then to get the additional properties changed I have to take the focus away from the snippet, so pressing the down arrow key does the job.