I use Visual Studio's "Code Snippet" feature pretty heavily while editing c# code. I always wished I could use them while typing out my aspx markup.
Is there a way to enable code snippet use in an aspx file editor window?
Are there any third party tools that perform this?
If you're familiar with code snippet definitions, this is exactly the type of thing I want to do:
<asp:TextBox ID="$var$TextBox" Text="$text$" OnClick="$var$_Click" runat="server" />
I could activate the snippet, tab twice, and move on!