這裏是我的aspx:如何渲染沒有任何樣式屬性的gridvew?
<asp:GridView ID="GVWOReport" runat="server" DataSourceID="ldsWOReport"
onprerender="GVWOReport_PreRender" GridLines="None" CssClass="report" >
<HeaderStyle CssClass="headerRow" />
<RowStyle CssClass="row" />
<AlternatingRowStyle CssClass="altRow" />
<FooterStyle CssClass="footer" />
</asp:GridView>
這裏是我提供的HTML:
<table class="report" cellspacing="0" id="GVWOReport" style="border-collapse:collapse;">
<thead>...</thead>
<tbody>...</tbody>
</table>
我想表標籤都沒有,但我的class和id屬性。我發現GridLines="None"
帶走了邊界,但我無法讓cellspacing
和style
消失。
這樣做,謝謝! – SupremeDud 2012-03-06 21:40:14