Latest web development tutorials

ASP.NET Table BackImageUrl property

Table Controls Table Controls

Definition and Usage

BackImageUrl property sets or returns the URL of the image used as the background image Table control.

grammar

<asp:Table BackImageUrl="URL" runat="server">
Some Content
</asp:Table>
属性 描述
URL 要使用的图像的 URL。


Examples

The following examples are provided to BackImageUrl Table control:

<form runat="server">
<asp:Table id="tab1" runat="server" BackImageUrl="img.gif">
<asp:TableRow>
<asp:TableCell>
Hello!
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</form>

The demonstration >>

Table Controls Table Controls