I.e. im wondering how i can achieve something like
<th><span>Discount</span>PLC</th>
In declaring a gridview columns such as
<asp:TemplateField HeaderText="Discount" HeaderStyle-Width="60px" SortExpression="discount">
<ItemTemplate>
<asp:Label ID="DiscountField" runat="server" Text='<%# Eval("discount").ToString() + "%" %>'></asp:Label>
</ItemTemplate>
</asp:TemplateField>
How can I add this styling to the header text ?