Panel.BackImageUrl Property
.NET Framework 3.0
Gets or sets the URL of the background image for the panel control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ public String get_BackImageUrl () /** @property */ public void set_BackImageUrl (String value)
public function get BackImageUrl () : String public function set BackImageUrl (value : String)
Not applicable.
Property Value
The URL of the background image for the panel control. The default is String.Empty.Use this property to display a custom image for the Panel control.
If the image is smaller than the Panel, it will be tiled to fill in the Panel.
Note: |
|---|
| This property is supported only on browsers that support HTML 4.0 or later. |
The following example illustrates how to programmatically set the BackImageUrl property of the Panel.
Note: |
|---|
| The following code sample uses the single-file code model and may not work correctly if copied directly into a code-behind file. This code sample must be copied into an empty text file that has an .aspx extension. For more information on the Web Forms code model, see ASP.NET Web Page Code Model. |
Community Additions
ADD
Show:
Note: