使用Gridview显示存储在数据库中的表,我想将边框颜色更改为#dbddff。它不接受这个或dbddff,我该怎么办?
<asp:GridView ID="GridView1" runat="server" AllowPaging="true" BorderColor="dbddff" AllowSoerting="true" Width="100px" AutoGenerateColumns="false" DataSourceID="GridDataSource">
由于
答案 0 :(得分:6)
尝试将BorderWidth属性设置为1px。
<asp:GridView ID="GridView1" runat="server" AllowPaging="true" BorderWidth="1px" BorderColor="dbddff" AllowSoerting="true" Width="100px" AutoGenerateColumns="false" DataSourceID="GridDataSource">
答案 1 :(得分:2)
您的代码
问题是边框颜色缺少#。这应该工作
答案 2 :(得分:1)
您可以通过样式或样式表应用颜色吗?
#GridView1 {
border: solid 1px #dbddff;
}
答案 3 :(得分:0)
您可以指定颜色或使用十六进制代码,在这种情况下,您需要在十六进制代码之前的#。边框的大小必须至少为1像素才能显示颜色。