Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有办法删除 GridView 在创建后吐出的无效 HTML 代码?
<table cellspacing="0" rules="all"
我想删除 cellspacing 和 rules 属性。
谢谢!
刚发现把
<asp:GridView CellSpacing="-1"
删除不需要和已弃用的 cellspacing 属性。
您可以通过更改 GridView 的 GridLines 属性的设置来删除 rules="all"。
谢谢