-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadrotator xml code
35 lines (32 loc) · 961 Bytes
/
adrotator xml code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
XMl.xml
<?xml version="1.0" encoding="utf-8" ?>
<Advertisements>
<Ad>
<ImageUrl>ITHEIT_logo_tr-bg.png</ImageUrl>
<NavigateUrl>https://www.google.com/</NavigateUrl>
<AlternateText>Logo</AlternateText>
<Impressions>1</Impressions>
<Keyword>ITheit</Keyword>
</Ad>
<Ad>
<ImageUrl>http://localhost:65424/Harsh Chaudhari-anime.jpg</ImageUrl>
<NavigateUrl>https://www.yahoo.com/</NavigateUrl>
<AlternateText>Anime Image</AlternateText>
<Impressions>10</Impressions>
<Keyword>IThet</Keyword>
</Ad>
</Advertisements>
adro.aspx
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="ad.aspx.cs" Inherits="ad" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>AD Rotator Example</div>
<asp:AdRotator ID="AdRotator1" runat="server" AdvertisementFile="~/XMLFile.xml" />
</form>
</body>
</html>