i found the solution. if you are using datagrid , and you want to show multiple records in one row. you may no need to use , repeater , or dataset , datatable , simple do one thing.
<div id="grdTest">
//////// grid view Here /////
</div>
and add this to your CSS
#grdstyle br ,tr
{
display:inline;
}
its fully resolved my issue , may this trick will be also helping for you
talhaoman
Member
1 Points
20 Posts
Re: How to get rid of Asp.net Grid ROWS layout.
May 07, 2012 03:26 PM|LINK
i found the solution. if you are using datagrid , and you want to show multiple records in one row. you may no need to use , repeater , or dataset , datatable , simple do one thing.
<div id="grdTest">
//////// grid view Here /////
</div>
and add this to your CSS
#grdstyle br ,tr
{
display:inline;
}
its fully resolved my issue , may this trick will be also helping for you