Click here to Skip to main content
15,885,278 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
populate a grid view with data selected from table employessss having colums
SrNo
EmpCode
name
Address
DOJ
If an employee has completed his 5 years tenure of working he will be eligible for grantity and for this we need to have a column in gridview "Eligible for grantity"
with the value 'YES' or 'NO'
If the value is 'Yes' highlight that column.

I complete above question upto save the details of employee

but I dont no how place those records inside gridview and edit and delete record from grid view

along with i dont how to highlight the column in gridview?
Posted

1 solution

Hi,

For Row highlight use the following event of the gridview,

protected void gridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (Convert.ToInt32(e.Row.Cells[8].Text) > 5)
{
e.Row.Style.Add(HtmlTextWriterStyle.Color, "red");
}
}
}

For Update, delete try the following,

1. http://www.aspdotnet-suresh.com/2011/02/how-to-inserteditupdate-and-delete-data.html[^]
2. http://csharpdotnetfreak.blogspot.com/2009/05/gridview-sqldatasource-insert-edit.html[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900