Click here to Skip to main content
15,887,746 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Guys, I'm trying to hide border for the 2nd column of GridView:

C#
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    e.Row.Cells[1].BorderWidth = 0;
}


But the border still appears :(


What's the problem?


Thank you!
Posted
Updated 3-Feb-13 12:13pm
v3

1 solution

Have a look at the code below. The code is written in the rowcreated event of the gridview and adds a page text before the other controls.
C#
protected void GridView1_RowCreated(object sender, GridViewRowEventArgs e)
  {
      if (e.Row.RowType == DataControlRowType.Pager)
      {
          Literal ltr = new Literal();
          ltr.Text="Page";
         e.Row.Controls.AddAt(0, ltr);
      }
  }


You can set the border colour etc using the row style property of gridview.
 
Share this answer
 
Comments
The_Immortal 4-Feb-13 0:45am    
Could you give me please an example how to set the border using the row style property of gridview? I guess it won't work =/

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