I have a gridview inside a GridView cell as you can see on the image. I am trying to remove the 2 horizontal lines that are i believe are borders below the word has and beyond the word next.

foreach (TableCell tc in e.Row.Cells)
{
tc.Attributes["style"] = "border-bottom-style:none";
tc.Attributes["style"] = "border-width:0px";
tc.Attributes["style"] = "border-top-style:none";
}
But it doesnt works. Any Help?
Add the following property to your GridView
This should remove all the borders.