- ASP.NET 教程
- ASP.NET简介
- ASP.NET Web Forms - 教程
- ASP.NET Web Forms - HTML 页面
- ASP.NET Web Forms - 服务器控件
- ASP.NET Web Forms - 事件
- ASP.NET Web Forms - HTML 表单
- ASP.NET Web Forms - 维持 ViewState
- ASP.NET Web Forms - TextBox 控件
- ASP.NET Web Forms - Button 控件
- ASP.NET Web Forms - 数据绑定
- ASP.NET Web Forms - ArrayList 对象
- ASP.NET Web Forms - Hashtable 对象
- ASP.NET Web Forms - SortedList 对象
- ASP.NET Web Forms - XML 文件
- ASP.NET Web Forms - Repeater 控件
- ASP.NET Web Forms - DataList 控件
- ASP.NET Web Forms - 数据库连接
- ASP.NET Web Forms - 母版页
- ASP.NET Web Forms - 导航
- ASP.NET Web Forms - HTML 服务器控件
- ASP.NET CalendarDay 控件
- ASP.NET Web Forms - Web 服务器控件
- ASP.NET Web Forms - Validation 服务器控件
- ASP.NET Web 控件标准属性
- ASP.NET 控件标准属性
ASP.NET BorderStyle 属性
Web 控件标准属性参考手册
定义和用法
BorderStyle 属性用于设置或返回控件的边框样式。
语法
<asp:webcontrol id="id" BorderStyle="style" runat="server" />
Possible Style Values
值 | 描述 |
---|---|
notSet | 不设置边框样式。 |
none | 定义无边框。 |
dotted | 定义点状边框。 |
dashed | 定义虚线边框。 |
solid | 定义实线边框。 |
double | 定义双实线边框。双线的宽度等于 border-width 的值。 |
groove | 定义 3D 凹槽边框。其效果取决于 border-color 的值。 |
ridge | 定义 3D 垄状边框。其效果取决于 border-color 的值。 |
inset | 定义 3D 内嵌边框。其效果取决于 border-color 的值。 |
outset | 定义 3D 外嵌边框。其效果取决于 border-color 的值。 |
实例
下面的实例设置表格的边框样式:
<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>
<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>
Web 控件标准属性参考手册
关注微信小程序
扫描二维码
程序员编程王