When I drag a Label control to my document, I get the following code :
<asp:Label ID="Label1" runat="server" text="Label"></asp:Label>
I prefer my code to look like the following instead :
<asp:Label ID="Label1" runat="server" Text="Label" />
How can I get .NET to do this by default? I looked in Tools -> Options -> Text Editor, where you'd expect to find it, but I couldn't find anything relevant there.