GridView rowDataBound event
The rowDataBound event is raised for each row rendered by the GridView control after the GridView control is bound to its data source. The below code demonstrates how to calculate the total of amounts in the credit amount and debit amount columns. The current row's RowType property is checked to verify that the row is a DataRow. If the current row is a DataRow, we can add the amounts in the debit and credit columns separately.The below code demonstrates how to use the DataItem property to access the properties of the data object in rowDataBound event of the GridView control.
The _tcamt and _tdamt variables are used to hold the running totals for the Credit and Debit fields respectively.
private int _tcamt = 0; private int _tdamt = 0;
protected void grdAccounts_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { int tdamt = (int)DataBinder.Eval(e.Row.DataItem, "damt"); _tdamt += tdamt; int tcamt = (int)DataBinder.Eval(e.Row.DataItem, "camt"); _tcamt += tcamt; } if (e.Row.RowType == DataControlRowType.Footer) { } }
GridView Articles
- GridView AutoGenerateColumns property
- Bind GridView control with SqlDataSource control
- DataBinding in a GridView control
- Binding a GridView programmatically with dataset
- Binding a GridView programmatically with Generic List Collection
- Using fields with the GridView control
- Adding Boundfields to a GridView control
- Adding button fields to a GridView control
- Create Templatefields in a GridView control
- Access a value using SelectedIndexChanged() event when a row in a GridView is selected
- How to restrict an item from being selected using GridView SelectedIndexChanging Event
- How to add a new row in the GridView control by using the GridView footer template
- Gridview datakeynames
- How to select a particular row in a GridView control using SelectedDataKey method
- Formatting GridView control with CSS
Become an Expert
Learn More
Q1. What is Azure Platform?
GridView CommandField example
GridView and DetailsView Master/Detail page using SqlDataSource control
POCO overview and advantages - POCO class, Entity Framework in Enterprise Applications
Query entity data model using linq to entities
Difference between arraylist and list collection
How to create a Web service using Visual Studio.net
FormView DataBound Event
Calling base class constructor in C#
Convert a sequence to a generic list using ToList()method
ERP Software Development
Project ideas for students
Accounting Software
Creating an ASP.Net MVC 3 application
Using assemblies in .net applications
How to implement form validation using ASP.Net 2.0 Validation Controls
Constructors in Visual Basic.Net
GridView CommandField example
GridView and DetailsView Master/Detail page using SqlDataSource control
POCO overview and advantages - POCO class, Entity Framework in Enterprise Applications
Query entity data model using linq to entities
Difference between arraylist and list collection
How to create a Web service using Visual Studio.net
FormView DataBound Event
Calling base class constructor in C#
Convert a sequence to a generic list using ToList()method
ERP Software Development
Project ideas for students
Accounting Software
Creating an ASP.Net MVC 3 application
Using assemblies in .net applications
How to implement form validation using ASP.Net 2.0 Validation Controls
Constructors in Visual Basic.Net