【发布时间】:2009-08-21 01:27:04
【问题描述】:
当我在 Asp.Net 中使用网格视图时,它会自动生成这种丑陋的 Html 样式:cellspacing="0" rules="all" border="1" style="border-collapse:collapse;
有没有办法完全不使用这种样式?
更新
目前我得到的是:
<table cellspacing="0" rules="all" border="1" id="ctl00_cphMain_gvTest" style="border-collapse:collapse;">
我想要什么:
<table id="ctl00_cphMain_gvTest">
所以,根本没有 Html 样式。我想要干净的 Html,如果我想添加样式,我会使用 CSS...
【问题讨论】: