When I'm using a grid view in Asp.Net, its auto-generated this ugly Html style : cellspacing="0" rules="all" border="1" style="border-collapse:collapse;
Is there a way to not have this styling at all ?
UPDATE
Presently what I got is :
<table cellspacing="0" rules="all" border="1" id="ctl00_cphMain_gvTest" style="border-collapse:collapse;">
What I want :
<table id="ctl00_cphMain_gvTest">
So, no Html style at all. I want clean Html, I'll use CSS if I want to add style...