Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
how to mark read and unread row in gridview in asp.net plese help...
Posted
Comments
Azziet 24-Jan-13 3:26am    
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

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

}
}
 
Share this answer
 
Thanks for your help. I usefull code i have implimented it. Thanks again.:-)
 
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