• ASP.NET 中 AdRotator(广告控件)的使用


    ylbtech-asp.net:AdRotator(广告控件)

     ASP.NET 中 AdRotator(广告控件)的使用。

    1.A,控件-AdRotator(广告控件)返回顶部
    AdRotator服务器控件    
      属性 描述
      ImageUrl 图像文件的绝对路径或相对地址
      NavigateUrl 当图像被点击时,可访问相应的网页 
      AlternateText  当鼠标移动到图片上方时,将显示的提示信息 
      keyword  指定广告的分类,我们可以利用此属性来对广告条进行分类 
      Impressions  指定图片在表格中的大小 
    1.B,运用实例返回顶部

    /Ad/X.jpg  图片位置

    /Intro.xml  广告信息编写(格式及规范)

    View Code
    <?xml version="1.0" encoding="utf-8" ?>
    <Advertisements>
      <Ad>
        <ImageUrl>Ad/1.jpg</ImageUrl>
        <NavigateUrl>http://www.baidu.com</NavigateUrl>
        <AlternateText>欢迎访问百度1</AlternateText>
        <Keyword>百度</Keyword>
        <Impressions>80</Impressions>
      </Ad>
      <Ad>
        <ImageUrl>Ad/2.jpg</ImageUrl>
        <NavigateUrl>http://www.163.com</NavigateUrl>
        <AlternateText>欢迎访问网易2</AlternateText>
        <Keyword>网易</Keyword>
        <Impressions>80</Impressions>
      </Ad>
      <Ad>
        <ImageUrl>Ad/3.jpg</ImageUrl>
        <NavigateUrl>http://www.baidu.com</NavigateUrl>
        <AlternateText>欢迎访问百度2</AlternateText>
        <Keyword>百度</Keyword>
        <Impressions>80</Impressions>
      </Ad>
      <Ad>
        <ImageUrl>Ad/4.jpg</ImageUrl>
        <NavigateUrl>http://www.163.com</NavigateUrl>
        <AlternateText>欢迎访问网易3</AlternateText>
        <Keyword>网易</Keyword>
        <Impressions>80</Impressions>
      </Ad>
    </Advertisements>

    /Intro.aspx  调用

    View Code
    <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Intro.aspx.cs" Inherits="Advanceapp_Intro" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        <div>
        <h3>AdRotator和XML控件结合</h3>
        <h3>广告条演示</h3>
            <asp:AdRotator ID="AdRotator1" runat="server" AdvertisementFile="~/Intro.xml" BackColor="Black"  BorderWidth="1"/>
        </div>
        </form>
    </body>
    </html>
    1.C,资源下载返回顶部

    https://files.cnblogs.com/ylbtech/webform-AdRotator.rar

    warn 作者:ylbtech
    出处:http://ylbtech.cnblogs.com/
    本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。
  • 相关阅读:
    Python 中的 None 与真假
    AVR第5课:蜂鸣器
    Solr使用入门指南
    EJB究竟是什么,真的那么神奇吗??
    Android 各个版本号WebView
    android SQLite 使用实例
    BackTrack5 (BT5)无线password破解教程之WPA/WPA2-PSK型无线password破解
    腾讯QQ企业邮箱POP3/SMTP设置
    【LeetCode】Substring with Concatenation of All Words
    PreferenceFragment 使用 小结
  • 原文地址:https://www.cnblogs.com/ylbtech/p/2943159.html
Copyright © 2020-2023  润新知