Site Meter Asp.Net-Csharp,Asp,Ado.Net,Ado,Micosoft,Visualstudio,Visual webgui: gridview template editing
Showing posts with label gridview template editing. Show all posts
Showing posts with label gridview template editing. Show all posts

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;
}