S
sloan
When defining a GridView column...and the header for that column
<asp:BoundField DataField="Price" HeaderText="The Price"
SortExpression="Price" />
is there a way to force a <br/> in the Header Text value?
<asp:BoundField DataField="Price" HeaderText="This phrase had four words"
SortExpression="Price" />
...
I tried
HeaderText="This<br/>phrase<br/>has<br/>four<br/>words"
but that didnt' work.
Thanks for any info!
...
<asp:BoundField DataField="Price" HeaderText="The Price"
SortExpression="Price" />
is there a way to force a <br/> in the Header Text value?
<asp:BoundField DataField="Price" HeaderText="This phrase had four words"
SortExpression="Price" />
...
I tried
HeaderText="This<br/>phrase<br/>has<br/>four<br/>words"
but that didnt' work.
Thanks for any info!
...