I guess, you have use HeaderTemplate attribute to do this.
Let me explain you in case DataList ( or you can modify according the
control you are using, since the approach is same for all
<DataList ..>
<HeaderTemplate>
<Table>
<Tr>
<TD Colspan=3>Demonstrations</TD>
</Tr>
<tr>
<td>sales</td>
<td>dns</td>
<td>not quality</td>
</tr>
</HeaderTemplate>
<ItemTemplate>
<Tr>
<TD Colspan=3><%= Value %></TD>
</Tr>
<tr>
<td><%= Value %></td>
<td><%= Value %></td>
<td><%= Value %></td>
</tr>
</Itemtemplate>
</DataList>
Please note that I am trying to explain you the approach, but not the
actual code.
Do let me know if you have any trouble in implementing this code.
--
Vadivel Kumar
http://www.vadivelk.net
(e-mail address removed) (remove "online.")
Bruno Alexandre wrote:
How can I have a header like this:
[ demonstrations ]
[sales] [dns][not qualify]
having one row like colspan="3"