从 asp.net gridview 中删除规则属性
我有一个 gridview,我希望无边框样式,但每当我使用控件时,asp.net 添加属性规则=“全部”,我尝试在控件上重写,如下所示:
但这也不起作用
i have a gridview i wish to style without borders but whenever i use the control asp.net adds in the attribute rules="all" i've tried overriding in on the control like so:
<asp:GridView ID="GridView1" runat="server" rules="none">
but this doesn't work either
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在
asp:GridView
标记或代码隐藏中指定GridLines="None"
:此外,如果您有时间,值得研究一下 ASP.NET 2.0 CSS 友好控件适配器 1.0,它生成比默认控件输出更清晰的标记。
Specify
GridLines="None"
in theasp:GridView
tag or in your code-behind:Additionally, if you have time, it's worth looking into the ASP.NET 2.0 CSS Friendly Control Adapters 1.0, which produce much cleaner markup than the default controls output.
尝试 gridlines 属性,将其设置为 none。
try the gridlines property, set it to none.
除了上面的回答之外
来源:http://www.w3schools.com/tags/att_table_rules.asp
Internet Explorer 9+、Firefox、Opera、Chrome 和 Safari 支持规则属性。
HTML5 不支持规则属性。请改用 CSS。
In addition to above answers
Source : http://www.w3schools.com/tags/att_table_rules.asp
The rules attribute is supported in Internet Explorer 9+, Firefox, Opera, Chrome, and Safari.
The rules attribute is not supported in HTML5. Use CSS instead.
可以通过在Gridview中应用内联样式来实现。
It can be achieved by applying inline style to Gridview.