欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

ASP.NET BorderStyle 屬性

定義和用法

BorderStyle 屬性用于設(shè)置或返回控件的邊框樣式。

語法

<asp:webcontrol id="id" BorderStyle="style" runat="server" />
描述
notSet 不設(shè)置邊框樣式。
none 定義無邊框。
dotted 定義點(diǎn)狀邊框。
dashed 定義虛線邊框。
solid 定義實(shí)線邊框。
double 定義雙線的邊框。雙線的寬度等于 border-width 的值。
groove 定義 3D 凹槽邊框。其效果取決于 border-color 的值。
ridge 定義 3D 壟狀邊框。其效果取決于 border-color 的值。
inset 定義 3D inset 邊框。其效果取決于 border-color 的值。
outset 定義 3D outset 邊框。其效果取決于 border-color 的值。

實(shí)例

本例設(shè)置表格的邊框樣式:

<form runat="server">
<asp:Table runat="server" BorderStyle="dotted" 
BorderWidth="5" GridLines="vertical">
  <asp:TableRow>
    <asp:TableCell>Hello</asp:TableCell>
    <asp:TableCell>World</asp:TableCell>
  </asp:TableRow>
</asp:Table>
</form>

實(shí)例

設(shè)置 Table 控件的 BorderStyle