ASP.NET ImageUrl Property

Definition and Usage

The ImageUrl property is used to set or return the URL of the image to be displayed.

Syntax

<asp:Image ImageUrl="URL" runat="server" />
Property Description
URL The URL of the image to be used.

Example

The following example sets the ImageUrl property for the Image control:

<form runat="server">
<asp:Image id="Img1" runat="server" ImageUrl="img.gif" />
</form>

Example

Set the ImageUrl Property for Image Control