Click here to Skip to main content
15,881,866 members
Articles / Web Development / ASP.NET
Article

Practical use of the DataGrid's ItemDataBound event.

Rate me:
Please Sign up or sign in to vote.
4.49/5 (33 votes)
27 Oct 20041 min read 265.9K   2.4K   46   21
Using the ItemDataBound event to modify the content and formatting of any cell in a DataGrid.

Sample Image

Introduction

Because of its simplicity, flexibility and many possible uses, the DataGrid class is one of the most well known and used classes of the .NET framework. The use of the DataGrid's ItemDataBound event introduces a whole new world of possibilities, letting you conditionally modify displayed data, format, as well as insert some client side code for any cell in your DataGrid. The use of this event can sometimes be a smart alternative to adding calculated columns to a dataset.

The source code available for this tutorial is a working example of what you can do with the ItemDataBound event; a DataGrid displays customer information, a balance value is displayed in red if its value is negative. For the sake of this tutorial, we'll pretend that Jamaica has invaded the North American continent, so North American countries are displayed as "Jamaica" with the insertion of client side code to create a hyperlink and map this link's onClick event to a JavaScript function (popup window). The source code contains an Access database and two web forms; the DataGrid and a form letting the user view complete details of the customer in the popup window.

Background

The ItemDataBound event happens once for every row, after the data is bound to the DataGrid and before the page is rendered to the client.

Using the code

// First we add our handler (OnItemDataBound) to the datagrid's ItemDataBound event
this.myDataGrid.ItemDataBound += new 
  System.Web.UI.WebControls.DataGridItemEventHandler(this.OnItemDataBound);
// This is our handler for the datagrid's ItemDataBound event.
private void OnItemDataBound(object sender, 
        System.Web.UI.WebControls.DataGridItemEventArgs e)
{
    // Check if the current row contains items; if it's
    // a header or footer row that will throw an error
    if (e.Item.ItemType == ListItemType.Item || 
        e.Item.ItemType == ListItemType.AlternatingItem)
    {
        // Get a copy of the "dgLabel2" label that contains the 
        // "Balance" value
        Label lblBalance = (Label)e.Item.FindControl("dgLabel2");
        // Convert the value contained in the label to a double type
        double dblBalance = Convert.ToDouble(lblBalance.Text);
        // If that numeric value is negative
        if(dblBalance < 0)
            // ...display it in red
            e.Item.Cells[3].ForeColor = System.Drawing.Color.Red;
        // Get a copy of the "dgLabel1" label that contains the 
        // "Country" value
        Label lblCountry = (Label)e.Item.FindControl("dgLabel1");
        // ...convert it to a string
        string strCountry = lblCountry.Text;
        // If it's a North American country...
        if(strCountry == "USA" || 
            strCountry == "Mexico" || 
            strCountry == "Canada")
        {
            // Get a copy of the "dgLabel0" label that contains the 
            // "CustomerID" value, we'll use it in the query string 
            // for the popup
            Label lblID = (Label)e.Item.FindControl("dgLabel0");
            // ...convert it to a string
            string strID = lblID.Text;
            // Replace the "Country" value displayed in the datagrid
            // with "Jamaica", placed in a hyperlink who's OnClick 
            // event calls a javascript "popup" window
            e.Item.Cells[2].Text = "<a href=\"popup.aspx?id=" + strID +
                "\" onClick=\"popup(this.href); return false;\">Jamaica</a>";
        }
    }
}

Points of Interest

The ItemCreated event is a close sibling of ItemDataBound. This event happens before ItemDataBound, when the row is created but does not yet contain any data, so you can't use it to read or modify data.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Canada Canada
I have been working with different web technologies (ASP, ASP.NET, ColdFusion, Perl/CGI) for the past 15 years. I live in Montreal, where I work for a little consultant group specializing in Microsoft technologies.

Comments and Discussions

 
QuestionHow to get Balance value on dgLabel2 ? Pin
Member 115775252-Apr-15 18:37
Member 115775252-Apr-15 18:37 
GeneralMy vote of 3 Pin
babu saravanan11-Apr-13 2:59
babu saravanan11-Apr-13 2:59 
GeneralRe: My vote of 3 Pin
Thomas Daniels17-Apr-13 7:15
mentorThomas Daniels17-Apr-13 7:15 
GeneralRe: My vote of 3 Pin
babu saravanan17-Apr-13 7:34
babu saravanan17-Apr-13 7:34 
GeneralRe: My vote of 3 Pin
Thomas Daniels17-Apr-13 7:35
mentorThomas Daniels17-Apr-13 7:35 
GeneralRe: My vote of 3 Pin
babu saravanan17-Apr-13 7:38
babu saravanan17-Apr-13 7:38 
Generaldate wise mail send Pin
papubiswal13-Mar-11 23:35
papubiswal13-Mar-11 23:35 
GeneralExcellent Pin
NaumanLeghari29-Dec-06 0:17
NaumanLeghari29-Dec-06 0:17 
GeneralSimple Solution Pin
muffingal20-Jun-06 9:51
muffingal20-Jun-06 9:51 
GeneralYou don't need labels [modified] Pin
Harteex8-Jun-06 5:02
Harteex8-Jun-06 5:02 
GeneralThank you Pin
gungk31-Mar-06 8:27
gungk31-Mar-06 8:27 
QuestionKidding me? Pin
eanderson3-Nov-04 11:52
eanderson3-Nov-04 11:52 
AnswerRe: Kidding me? Pin
Anonymous21-Dec-04 11:47
Anonymous21-Dec-04 11:47 
GeneralRe: Kidding me? Pin
Anonymous3-Feb-05 8:22
Anonymous3-Feb-05 8:22 
GeneralRe: Kidding me? Pin
robdeyric14-Aug-09 6:39
robdeyric14-Aug-09 6:39 
AnswerRe: Kidding me? Pin
3-Feb-05 14:15
suss3-Feb-05 14:15 
AnswerRe: Kidding me? Pin
Anonymous8-Jun-05 15:23
Anonymous8-Jun-05 15:23 
AnswerRe: Kidding me? Pin
Marco M.18-Jul-05 9:51
Marco M.18-Jul-05 9:51 
AnswerRe: Kidding me? Pin
Christian Islas27-Jul-09 6:54
Christian Islas27-Jul-09 6:54 
AnswerRe: Kidding me? Pin
Adam Tolley14-Jul-10 9:09
Adam Tolley14-Jul-10 9:09 
AnswerRe: Kidding me? Pin
johnmcpherson1023-Jul-12 4:48
johnmcpherson1023-Jul-12 4:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.