I have a xml data source linked to an xml file with contents for 8 images. The rotator always stops at the 2nd last image.
My setting are:
Type: AutoAdvance
Direction: Left
FrameDuration= 8000
and ScrollDuration=500
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# XPath("ImageUrl") %>' ToolTip='<%# XPath("AlternateText") %>'/>
</ItemTemplate>
XML File:
<?xml version="1.0" encoding="utf-8" ?>
<Ads>
<ad>
<ImageUrl>~/Images/ad1.gif</ImageUrl>
<AlternateText>1st Ad</AlternateText>
<Keyword>1st Ad</Keyword>
</ad>
<ad>
<ImageUrl>~/Images/ad2.gif</ImageUrl>
<AlternateText>2nd Ad</AlternateText>
<Keyword>2nd Ad</Keyword>
<Impressions>50</Impressions>
</ad>
....
....
...
</Ads>
Please help!
Thanks,
Sayak
My setting are:
Type: AutoAdvance
Direction: Left
FrameDuration= 8000
and ScrollDuration=500
<ItemTemplate>
<asp:Image ID="Image1" runat="server" ImageUrl='<%# XPath("ImageUrl") %>' ToolTip='<%# XPath("AlternateText") %>'/>
</ItemTemplate>
XML File:
<?xml version="1.0" encoding="utf-8" ?>
<Ads>
<ad>
<ImageUrl>~/Images/ad1.gif</ImageUrl>
<AlternateText>1st Ad</AlternateText>
<Keyword>1st Ad</Keyword>
</ad>
<ad>
<ImageUrl>~/Images/ad2.gif</ImageUrl>
<AlternateText>2nd Ad</AlternateText>
<Keyword>2nd Ad</Keyword>
<Impressions>50</Impressions>
</ad>
....
....
...
</Ads>
Please help!
Thanks,
Sayak