On a control like the GridView, you can specify the HeaderStyle attributes as attributes of the GridView element (e.g., HeaderStyle-Wrap="false"), or as an attribute of the HeaderStyle child element. Is one way better than the other? Or, is it just a readability preference?
<asp:GridView ID="myGrid" runat="server" HeaderStyle-Wrap="false" HeaderStyle-HorizontalAlign="Left">
<!-- Columns -->
</asp:GridView>
or
<asp:GridView ID="myGrid" runat="server">
<HeaderStyle Wrap="false" HorizontalAlign="Left" />
<!-- Columns -->
</asp:GridView>