Posted on: 12/27/2014 3:04:01 AM | Views : 502

hi,
I have set a bottom border for each row in Gridview using CSS class below

  <style type="text/css">         .gridLines td         {             border-bottom: 1px solid Gray;             border-bottom-color: #999966;                     }     </style>

<asp:GridView ID="GridView2" runat="server" CssClass="gridLines"
   
Now I want to hide the very last bottom border in the last row of the  gridview.

Thank you for any tips?

Go to the complete details ...