AdRotator.AdCreated Event

 

Occurs each time an advertisement is displayed. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site. This API is obsolete. For information about how to develop ASP.NET mobile applications, see the www.asp.net/mobile Web site.

Namespace:   System.Web.UI.MobileControls
Assembly:  System.Web.Mobile (in System.Web.Mobile.dll)

public event AdCreatedEventHandler AdCreated

If the AdvertisementFile property is set, this event occurs after the advertisement has been selected from the file.

The event handler receives an AdCreatedEventArgs property that contains the properties of the advertisement being displayed. The following table shows the properties that provide information specific to this event.

Property

Description

AdProperties

Returns the dictionary that contains all the advertisement properties extracted from an XML file after the AdCreated event is raised.

AlternateText

Specifies the alternate text and ToolTip (if supported by the browser) to be rendered in the AdRotator control.

ImageUrl

Specifies the image to be rendered in the AdRotator control.

NavigateUrl

Specifies the URL reference that the browser navigates to when the advertisement is clicked.

The following code sample handles the AdCreated event, and is only part of a larger example for the AdRotator class overview.

private void AdCreated_Event(Object sender, AdCreatedEventArgs e)
{
   Label2.Text = "Clicking the AdRotator control takes you to " + 
       e.NavigateUrl;
}

.NET Framework
Available since 1.1
Return to top
Show: