protected void grvTest_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[8].Text == "True")
{
e.Row.Cells[8].Text = "Active";
}
else
{
e.Row.Cells[8].Text = "Inactive";
}
}
}
Subscribe to:
Post Comments (Atom)
1 comment:
hi i need to call a windows service from a asp page ... i hv no idea abt this need help frm u... its v imp
Post a Comment