Site Meter Asp.Net-Csharp,Asp,Ado.Net,Ado,Micosoft,Visualstudio,Visual webgui: Gridview Rowdatabound.

Sunday, October 25, 2009

Gridview Rowdatabound.

Gridview Rowdatabound:

DataKeyNames="id" OnRowDataBound="GridView1_RowDataBound"

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)

if (e.Row.RowType == DataControlRowType.Pager)
{
e.Row.Cells[1].Text = "RS. " + e.Row.Cells[1].Text;
}


No comments:

Post a Comment