Click here to Skip to main content
15,895,142 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
What is the actual difference between DataBound event and RowDataBound event in a grid view?
Is it necessary to use both of them to bind the data or one is enough?
Posted

1 solution

Hi,
Before the GridView control can be rendered, each row in the control must be bound to a record in the data source. The RowDataBound event is raised when a data row (represented by a GridViewRow object) is bound to data in the GridView control. This enables you to provide an event-handling method that performs a custom routine, such as modifying the values of the data bound to the row, whenever this event occurs.
Refer :
MDSN : GridView.RowDataBound Event[^]
MDSN : GridView.OnRowDataBound Method[^]

We use gridview DataBound event when we want to do certain things after the server controls bind to the datasource. For example after the binding we may want to display some text at the bottom of the grid or we might want to calculate the total value of a column.
MSDN : GridView.DataBind Method[^]
MSDN : GridView.DataBind Method ()[^]

All the best.
--Amit
 
Share this answer
 
v2
Comments
Sandeep Mewara 23-Jul-12 13:58pm    
Good answer. 5!
_Amy 23-Jul-12 14:04pm    
Thank you Sandeep. :)
Anto Reegan 17-Apr-14 8:38am    
Gud one Sandeep.

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