GridView Row display
-
Hi to all, I have more than 100 values in one table column(Database).I need to show in gridview to those values in ten rows(like 10 rows and 10 columns). Is it possible or not. Thanks in Advance, Sundaramoorthy
-
Hi to all, I have more than 100 values in one table column(Database).I need to show in gridview to those values in ten rows(like 10 rows and 10 columns). Is it possible or not. Thanks in Advance, Sundaramoorthy
Your question is not quite clear. Please rephrase and elaborate a little more.
Sandeep Mewara [My last tip/trick]: Server side Delimiters in ASP.NET[^]
-
Hi to all, I have more than 100 values in one table column(Database).I need to show in gridview to those values in ten rows(like 10 rows and 10 columns). Is it possible or not. Thanks in Advance, Sundaramoorthy
I think I know what you are trying to say. I do not think you can do this from the data in one column. What you might try doing is create a temp table with which mirrors the layout of your gridview and then populating the rows and columns from that.
Kind Regards Julian Mummery
-
Hi to all, I have more than 100 values in one table column(Database).I need to show in gridview to those values in ten rows(like 10 rows and 10 columns). Is it possible or not. Thanks in Advance, Sundaramoorthy
Use
Datalist
for your requirement..Without any more effortsDatalist
fulfills your requirement.<asp:DataList ID="Datalist1" runat="server" RepeatColumns="10" RepeatDirection="Horizontal" >
</asp:DataList>Bind the
Datalist
same asGridview
through Dataset or Datatable or as you like. Thanks