Is there a way to stop VS (in particular, 2008) by automatically inserting WebForms identifiers into elements <asp:when you paste code into a view?
eg. inserting this into the view by default:
<asp:Content ContentPlaceHolderID="TitleContent" runat="server"/>
</asp:Content>
The results are, annoyingly, in this:
<asp:Content ID="Content1" ContentPlaceHolderID="TitleContent" runat="server"/>
</asp:Content>
source
share