display format for gridview
Posted
by peter
on Stack Overflow
See other posts from Stack Overflow
or by peter
Published on 2010-05-06T21:02:10Z
Indexed on
2010/05/06
21:08 UTC
Read the original article
Hit count: 200
I have a grid named 'GridView1' contains two columns 'Date' and 'Session Deatils' i am displaying like this way only
<asp:GridView ID="GridView1" OnRowCommand="ScheduleGridView_RowCommand"
runat="server" AutoGenerateColumns="False" Height="60px"
Style="text-align: center" Width="869px" EnableViewState="False">
<Columns>
<asp:BoundField HeaderText="Date" DataField="Date"><HeaderStyle Width="80px" /></asp:BoundField>
<asp:BoundField DataField="" HeaderText="Session Detais" /> </Columns>
But here i need to display 3 column sections downside Session details without any column borders for each dates,,how can i achive like this wasy
Date SessionDetails
06-04-2010 Time-(value from database) Topic-(value from database) Head-(value from database)
------- ------------------ ------------------- ----------------------
© Stack Overflow or respective owner