|
|
ASP.NET AdvertisementFile Property
Complete AdRotator Control Reference
Definition and Usage
The AdvertisementFile property is used to set or return the path to the XML
file that contains the advertisement data.
Syntax
|
<asp:AdRotator AdvertisementFile="path" runat="server" /> |
| Attribute |
Description |
| path |
A string specifying the location of the XML file that
contains the advertisement data Possible values:
- Absolute path (like http://www.w3schools.com/ads/bigad.xml )
- Virtual root path (like ~/ads/bigad.xml )
- Relative Path( like ../ads/bigad.xml ).
|
Example
The following example declairs an AdRotator (Check the "Try-It-Yourself" to
see the XML file"):
<form runat="server">
<asp:AdRotator id="ad1" runat="server"
AdvertisementFile="Ad1.xml" />
</form>
|
Show example »
|
Complete AdRotator Control Reference
|
|
|