This is a discussion on Datagrid in ASP.Net within the ASP and ASP.NET Programming forums, part of the Web Development category; Hi all, Here is some tips about datagrid in asp.net....
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Hi all, Here is some tips about datagrid in asp.net.
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| Sponsored Links |
| |||
| How can we format data inside DataGrid? Use the DataFormatString property.
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| |||
| What is the method to customize columns in DataGrid? Use the template column.
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| |||
| How to decide on the design consideration to take a Datagrid, datalist or repeater ? Many make a blind choice of choosing datagrid directly, but that's not the right way. Datagrid provides ability to allow the end-user to sort, page, and edit its data. But it comes at a cost of speed. Second the display format is simple that is in row and columns. Real life scenarios can be more demanding that. With its templates, the DataList provides more control over the look and feel of the displayed data than the DataGrid. It offers better performance than datagrid. Repeater control allows for complete and total control. With the Repeater, the only HTML emitted are the values of the databinding statements in the templates along with the HTML markup specified in the templates—no "extra" HTML is emitted, as with the DataGrid and DataList. By requiring the developer to specify the complete generated HTML markup, the Repeater often requires the longest development time. But repeater does not provide editing features like datagrid so everything has to be coded by programmer. However, the Repeater does boast the best performance of the three data Web controls. Repeater is fastest followed by Datalist and finally datagrid.
__________________ S.VinothkumaR Behind me is infinite power, Before me is Endless Possibility, Around me is Boundless Opportunity, Why should I fear! |
| |||
| hi, Among all the data controls Repeater control is the best for the performance and which have additional feature when compared to the other Data controls in the ASP.NET. cheers
__________________ Venkat knowledge is Power |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Having Some Issues in DataGrid | Murali | ASP and ASP.NET Programming | 1 | 07-18-2007 02:56 AM |
| datagrid cell value | nssukumar | Flash Actionscript Programming | 4 | 07-11-2007 09:03 AM |
| sorting in datagrid | nssukumar | Flash Actionscript Programming | 0 | 03-21-2007 07:49 AM |
| Datagrid limitations | nssukumar | Flash Actionscript Programming | 0 | 03-21-2007 07:40 AM |
| xml datas into datagrid. | nssukumar | Flash Actionscript Programming | 0 | 03-21-2007 04:15 AM |