AdRotator.ImageUrlField Property

Gets or sets a custom data field to use in place of the ImageUrl attribute for an advertisement.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
property String^ ImageUrlField {
	String^ get ();
	void set (String^ value);
}
/** @property */
public String get_ImageUrlField ()

/** @property */
public void set_ImageUrlField (String value)

public function get ImageUrlField () : String

public function set ImageUrlField (value : String)

Not applicable.

Property Value

The name that identifies the field where the URL for the image displayed for an advertisement is stored. The default value is "ImageUrl."

The ImageUrlField property is used for selecting a custom data field used in place of the ImageUrl attribute for an advertisement. Like ImageUrl, this custom field is defined in the XML file that contains advertisement information.

The following code example demonstrates using the ImageUrlField property to specify a custom data field. The NavigateUrlField, ImageUrlField, and AlternateTextField properties are used to dynamically select a custom field to use in place of the NavigateUrl, ImageUrl, and AlternateText attributes. This example uses a device filter to indicate that custom fields should be used for Wireless Application Protocol (WAP)-enabled devices.

No code example is currently available or this language may not be supported.

The following is the sample XML data for the previous example.

<Advertisements>
  <Ad>
    <ImageUrl>~/Images/ad1.gif</ImageUrl>
    <NavigateUrl>http://msdn.microsoft.com/vbasic/</NavigateUrl>
    <AlternateText>Visual Basic Developer Site</AlternateText>
    <Width>140</Width>
    <Height>100</Height>
      <!-- The following custom elements will be used by WAP-enabled
        devices. -->
     <WmlImageUrl>~/Images/mobileAd1.jpg</WmlImageUrl>
    <WmlNavigateUrl>http://msdn.microsoft.com/mobile/</WmlNavigateUrl>
    <WmlAlternateText>Windows Mobile Developer Site</WmlAlternateText>

  </Ad>
  <Ad>
    <ImageUrl>~/Images/ad2.gif</ImageUrl>
    <NavigateUrl>http://msdn.microsoft.com</NavigateUrl>
    <AlternateText>MSDN</AlternateText>
    <Width>150</Width>
    <Height>150</Height>
    <!-- The following custom elements will be used by WAP-enabled
      devices. -->
    <WmlImageUrl>~/Images/mobileAd2.jpg</WmlImageUrl>
    <WmlNavigateUrl>http://msdn.microsoft.com/mobility/</WmlNavigateUrl>
    <WmlAlternateText>Windows Mobile Developer Site</WmlAlternateText>
  </Ad>
</Advertisements>

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: