DataGrid:







1
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
2
{
3
if (e.Row.RowType == DataControlRowType.Header)
4
{
5
e.Row.Attributes.Add("style", "background-image:url('background.gif')");
6
}
7
}

2

3

4

5

6

7
