使用Gridview显示存储在数据库中的表,我想将边框颜色更改为#dbddff。它不会接受这个或dbddff,我该怎么办?
<asp:GridView ID="GridView1" runat="server" AllowPaging="true" BorderColor="dbddff" AllowSoerting="true" Width="100px" AutoGenerateColumns="false" DataSourceID="GridDataSource">
谢谢
最佳答案
尝试将BorderWidth属性设置为1px。
<asp:GridView ID="GridView1" runat="server" AllowPaging="true" BorderWidth="1px" BorderColor="dbddff" AllowSoerting="true" Width="100px" AutoGenerateColumns="false" DataSourceID="GridDataSource">
关于asp.net - 更改GridView的边框颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14588258/