Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable the gridview rows border

Tags:

asp.net

Can we disable the gridview horizontal line ? I want to display grid without horizontal lines help me thank you.

like image 200
Surya sasidhar Avatar asked Sep 24 '09 05:09

Surya sasidhar


2 Answers

Set GridLines="None" on your GridView

like image 101
nikib3ro Avatar answered Sep 25 '22 06:09

nikib3ro


Setting both:

BorderStyle="None" 

and

GridLines="None" 

on your Gridview will remove all of the lines.

like image 43
Jaiesh_bhai Avatar answered Sep 23 '22 06:09

Jaiesh_bhai