Click here to Skip to main content
Sign Up to vote bad
good
See more: C#ASP.NET
how to mark read and unread row in gridview in asp.net plese help...
Posted 23 Jan '13 - 20:33

Comments
Azziet - 24 Jan '13 - 3:26
by which manner you want to make read/unread row of grid view ...you can change color of rows..or you can make bold/normal fonts

1 solution

string strMyContion = "";
        protected void gvFiles_RowDataBound(object sender, GridViewRowEventArgs e)
        {
            if (e.Row.RowType == DataControlRowType.DataRow)
            {
                GridViewRow gvr = e.Row;
 
                if (strMyContion satisfies with the row i want)
                {
                    // To Mark 
                    gvr.ForeColor = System.Drawing.Color.Red;
 
                    // To Read 
                    string col1Value = gvr.Cells[0].Text;
                    Label lblTestValue = (Label)gvr.FindControl("lblTest");
 
                    // To Write 
                    gvr.Cells[0].Text = "CellData_Modified";
                    ((Label)gvr.FindControl("lblTest")).Text = "Label_Test";
                    ((TextBox)gvr.FindControl("txtDataTest")).Text = "TextBox_Test";
                }
}
}
  Permalink  

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

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 OriginalGriff 385
1 Sergey Alexandrovich Kryukov 348
2 Arun Vasu 345
3 Tadit Dash 228
4 Aarti Meswania 195
0 Sergey Alexandrovich Kryukov 9,955
1 OriginalGriff 7,589
2 CPallini 4,028
3 Rohan Leuva 3,422
4 Maciej Los 2,949


Advertise | Privacy | Mobile
Web04 | 2.6.130523.1 | Last Updated 24 Jan 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid