What's the syntax for the aspx pages if you want to break down really long lines of code into a more readable format.
Example:
<asp:Label runat="server" ID="lblTest" CommandName="Sort" CommandArgument="Efficiency" ForeColor="White" Text="<img src='images/bluecell.png' /> = 66 - 100 % <br><img src='images/greencell.png' /> = 33 - 66 % <br> <img src='images/ambercell.png' /> = 0 - 33%"> </asp:Label>
into something like:
<asp:Label runat="server" ID="lblTest" CommandName="Sort" CommandArgument="Efficiency"
ForeColor="White" Text="<img src='images/bluecell.png' /> = 66 - 100 % <br><img
src='images/greencell.png' /> = 33 - 66 % <br> <img src='images/ambercell.png' /> = 0 - 33%">
</asp:Label>
Or is it not possible to break up the value of one individual attribute?