Does anyone know if there's a way in either the 2010 IDE directly or using something like Resharper to have it reformat the asp.net code in the following way.If I've got a control written like this:\[code\]<asp:TextBox ID="txtAddress1" runat="server" CssClass="somethingHere" />\[/code\]it won't do anything to it. However, if I've got something longer like this:\[code\]<asp:RequiredFieldValidator ValidationGroup="grpSample" Display="None" ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtfirstName" ErrorMessage="Missing!"></asp:RequiredFieldValidator>\[/code\]it will format it like this:\[code\]<asp:RequiredFieldValidator ValidationGroup="grpSample" Display="None" ID="RequiredFieldValidator1" runat="server" ControlToValidate="txtfirstName" ErrorMessage="Missing!"></asp:RequiredFieldValidator>\[/code\]With each property on a new line? So if a control reaches a certain length it reformats as above?I've searched for quite a while and can't see a way of doing this, but in the case of controls like repeaters, gridviews etc. i find the second layout a lot easier to read.