ASP.NET BorderColor 属性
定义和用法
BorderColor 属性用于设置或返回控件的边框颜色。
语法
<asp:webcontrol id="id" BorderColor="color" runat="server" />
属性 | 描述 |
---|---|
color | 设置为控件的边框颜色的颜色。必须是合法的 HTML 颜色。 |
下面的实例设置了表格的边框颜色:
<form runat="server">
<asp:Table runat="server" BorderColor="#FF0000"
BorderWidth="5" GridLines="vertical">
<asp:TableRow>
<asp:TableCell>Hello</asp:TableCell>
<asp:TableCell>World</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
<asp:Table runat="server" BorderColor="#FF0000"
BorderWidth="5" GridLines="vertical">
<asp:TableRow>
<asp:TableCell>Hello</asp:TableCell>
<asp:TableCell>World</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
演示实例 »
设置 Button 控件的边框颜色(带有声明和脚本)
版权声明:本页面内容旨在传播知识,为用户自行发布,若有侵权等问题请及时与本网联系,我们将第一时间处理。E-mail:284563525@qq.com