<asp:GridView ID="GridView1" runat="server" OnRowDataBound="GridView1_RowDataBound"
AutoGenerateColumns="true"></asp:GridView>
//DB Bağlantısı
OkulDataContext db = new OkulDataContext();
protected void Page_Load(object sender, EventArgs e)
{
//Ogrenci_Tbl Tablosunda Tüm Verileri GridView'e Aktarma
GridView1.DataSource = db.Ogrenci_Tbls.ToList();
GridView1.DataBind();
}
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (e.Row.Cells[1].Text == "Mustafa DOĞAN")
{
e.Row.Cells[1].ForeColor = System.Drawing.Color.Red;
e.Row.Cells[1].Font.Bold = true;
}
}
}