show-notice
hide-notice

Sunday 7 July 2013

Asp.Net in Ajax Adrotator Control


Introduction
 
 
This article i will explain Asp.Net in Ajax Adrotator Control.

 
Example


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>Asp.Net in Ajax Adrotator Control</title>
</head>
<body>
    <form id="form1" runat="server">
    <div align="center">
   
        <asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <br />
        <asp:Timer ID="Timer1" runat="server" Interval="1000">
        </asp:Timer>
        <br />
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:AdRotator ID="AdRotator1" runat="server"
                    AdvertisementFile="~/XMLFile.xml" />
            </ContentTemplate>
            <Triggers>
            <asp:AsyncPostBackTrigger ControlID="Timer1" EventName="Tick" />
            </Triggers>
        </asp:UpdatePanel>
   
    </div>
    </form>
</body>
</html>
 

XML

<?xml version="1.0" encoding="utf-8" ?>


<Advertisements>
      <Ad>
            <ImageUrl>~/image/225px-Flag_of_India.svg.png</ImageUrl>
            <NavigateUrl>http://www.google.com</NavigateUrl>
            <Alternatetext>India</Alternatetext>
            <Imressions></Imressions>
            <Keywords></Keywords>
            <Width>200px</Width>
            <Height>200px</Height>
      </Ad>

      <Ad>
            <ImageUrl>~/image/indian-flag-12.gif</ImageUrl>
            <NavigateUrl>http://www.google.com</NavigateUrl>
            <Alternatetext>India</Alternatetext>
            <Imressions></Imressions>
            <Keywords></Keywords>
            <Width>200px</Width>
            <Height>200px</Height>

      </Ad>

      <Ad>
            <ImageUrl>~/image/Indian-flag-HD-wallpapers.jpg</ImageUrl>
            <NavigateUrl>http://www.google.com</NavigateUrl>
            <Alternatetext>India</Alternatetext>
            <Imressions></Imressions>
            <Keywords></Keywords>
            <Width>200px</Width>
            <Height>200px</Height>

      </Ad>





</Advertisements>




SHARE THIS POST   

0 comments :

Post a Comment

Design by Gohilinfotech | www.gohilinfotech.blogspot.com