I have a GridView with a lot of information and columns. The Header of each column is so long, so I want to write it in two or three lines instead of one line. How to do that?
Asked
Active
Viewed 308 times
1 Answers
0
Here's one way:
<asp:BoundField DataField="Description"
HeaderText="Description <br /> more stuff"
SortExpression="Description"
HtmlEncode="False" />

Steve Wellens
- 20,506
- 2
- 28
- 69