Blog that contains articles about new technologies related or not with programming.
I will describe and solves some problems that I encounter in my career.
ASP .NET, AJAX, Javascript, C++, C# and SQL are some of the subjects that will appear.
24 October 2011
how to use gridview datarow bound event
protected void gvSkinLoc_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { if (e.Row.Cells[1].Text == "Head") e.Row.Cells[1].Text = "d Head Part"; } }
No comments:
Post a Comment