ASP.NET BackImageUrl Property

Definition and Usage

The BackImageUrl property is used to set or return the URL of the image used as the background image of the Table.

Syntax

<asp:Table BackImageUrl="URL" runat="server">
Some Content
</asp:Table>
Property Description
URL URL of the image to be used.

Example

The following example sets the BackImageUrl for the 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>

Example

Set the BackImageUrl Property for Table Control