Hi Rob,
Something like this should work. First, set a CssClass on the DetailsView:
<asp:DetailsView CssClass="MyView" ID="DetailsView1" runat="server" />
Then use CSS to override the outer table border (.MyView) and the inner table cell borders (.MyView td):
.MyView, .MyView td
{
border-color: blue;
}
Hope this helps,
Imar
---------------------------------------
Imar Spaanjaars
http://Imar.Spaanjaars.Com
Everyone is unique, except for me.
Author of
ASP.NET 2.0 Instant Results and
Beginning Dreamweaver MX / MX 2004
Want to be my colleague? Then check out this post.