c# - BoundField "child" in aspx -


i have gridview columns, , inside columns have boundfields.

<columns>  <asp:boundfield headerstyle-wrap="false" itemstyle-wrap="false" headertext="a" datafield="a" /> <asp:boundfield headerstyle-wrap="false" itemstyle-wrap="false" headertext="b" datafield="b" /> <asp:boundfield headerstyle-wrap="false" itemstyle-wrap="false" headertext="c" datafield="c" /> <asp:boundfield headerstyle-wrap="false" itemstyle-wrap="false" headertext="d1" datafield="d1" /> <asp:boundfield headerstyle-wrap="true" itemstyle-wrap="false" headertext="d2" datafield="d2" /> <asp:boundfield headerstyle-wrap="true" itemstyle-wrap="false" headertext="d3" datafield="d3" /> </columns> 

i have picture explains have, , looking achieve, here goes:

enter image description here

just have itemtemplate keep design in gridview cell, have headertemplate customise header design. googling took me this simple article


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -