从 asp.net gridview 中删除规则属性

发布于 2024-08-05 05:36:38 字数 186 浏览 6 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

莳間冲淡了誓言ζ 2024-08-12 05:36:38

asp:GridView 标记或代码隐藏中指定 GridLines="None"

myGridView.GridLines = GridLines.None

此外,如果您有时间,值得研究一下 ASP.NET 2.0 CSS 友好控件适配器 1.0,它生成比默认控件输出更清晰的标记。

Specify GridLines="None" in the asp:GridView tag or in your code-behind:

myGridView.GridLines = GridLines.None

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.

羞稚 2024-08-12 05:36:38

尝试 gridlines 属性,将其设置为 none。

try the gridlines property, set it to none.

眼眸印温柔 2024-08-12 05:36:38

除了上面的回答之外

规则属性指定内部边框的哪些部分
应该是可见的。

来源:http://www.w3schools.com/tags/att_table_rules.asp
Internet Explorer 9+、Firefox、Opera、Chrome 和 Safari 支持规则属性。

HTML5 不支持规则属性。请改用 CSS。

In addition to above answers

The rules attribute specifies which parts of the inside borders that
should be visible.

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.

梦罢 2024-08-12 05:36:38

可以通过在Gridview中应用内联样式来实现。

<asp:GridView ID="GridView1" style="border-width:0;" runat="server">

It can be achieved by applying inline style to Gridview.

<asp:GridView ID="GridView1" style="border-width:0;" runat="server">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文