Click here to Skip to main content
15,887,027 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
one row display date

next two lines display notification of the date repeaat so on




03/08/2016
study on asp.net

08/08/2016

java exam



10/08/2016

ooad exam it is



it is possible in gridview

What I have tried:

<asp:gridview id="ffff" runat="server" >
Posted
Updated 3-Aug-16 3:15am

1 solution

The GridView control displays one row per item. You might be able to fake it by using a single column with line-breaks, but it won't be particularly nice.

I would suggest using the ListView control[^] instead. The will give you complete control over the generated markup.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900