如何给BoundField设置样式?
我在Gridview中使用BoundField。 Tt显示下划线和不需要的颜色。
如何删除下划线和颜色?
最佳答案
根据您尝试的绑定(bind)字段,它可能会有所不同,但这是一个示例。每个字段都有各种样式的属性,您也可以设置CssClass
。
CommandField
.select {
text-decoration: none;
color: Red;
}
<asp:CommandField ShowSelectButton="True">
<ControlStyle CssClass="select" />
</asp:CommandField>
绑定(bind)字段
.product {
color: Blue;
}
<asp:BoundField DataField="ProductName" HeaderText="Product Name" ItemStyle-CssClass="product">
<ItemStyle CssClass="product" />
</asp:BoundField>
转到
GridView
属性→列,您将在此处找到所有字段。在那里您可以设置style properties of BoundField
.另一种选择是使用“模板字段”,在其中您将拥有更多控制权。
关于asp.net - BoundField样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4623356/