ASP.NET Table BackImageUrl 属性
ASP.NET BackImageUrl 属性
Table 控件定义和用法
BackImageUrl 属性用于设置或返回用作 Table 控件背景图像的图像的 URL。
语法
<asp:Table BackImageUrl="URL" runat="server">
Some Content
</asp:Table>
Some Content
</asp:Table>
属性 | 描述 |
---|---|
URL | 要使用的图像的 URL。 |
实例
下面的实例为 Table 控件设置了 BackImageUrl:
<form runat="server">
<asp:Table id="tab1" runat="server" BackImageUrl="img.gif">
<asp:TableRow>
<asp:TableCell>
Hello!
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
<asp:Table id="tab1" runat="server" BackImageUrl="img.gif">
<asp:TableRow>
<asp:TableCell>
Hello!
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>
演示实例 »
相关文章
- ASP.NET Web Pages WebGrid
- ASP.NET Web Pages – 发布
- ASP.NET WebPages 帮助器参考手册
- ASP.NET Razor C# 循环和数组
- ASP.NET 数据绑定
- ASP.NET SortedList
- ASP.NET DropDownList 控件
- ASP.NET Image 控件
- ASP.NET ListItem 控件
- ASP.NET Literal 控件
- ASP.NET RadioButton 控件
- ASP.NET HTML 控件 Calendar 2
- ASP.NET HTML 控件 Label
- ASP.NET HTML 控件 linkbutton
- ASP.NET HTML 控件 Page_Load
- C# 实例 实例解释
- VB 实例 For 循环
- ASP.NET Calendar CaptionAlign 属性
- ASP.NET Calendar ShowDayHeader 属性
- ASP.NET Calendar ShowNextPrevMonth 属性