net3:Button的CommandName使用,AdRotator,BulletedList的使用

2021-06-28 06:03

阅读:406

标签:webp   ring   security   导入   click   for   data   keyword   val   

原文发布时间为:2008-07-29 —— 来源于本人的百度文章 [由搬家工具导入]

using System;
using System.Data;
using System.Configuration;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }
    protected void Button1_Click(object sender, EventArgs e)
    {
        switch (((Button)sender).CommandName)
        {
            case "a":
                Label1.Text = "aaa";
                break;
            case "b":
                Label1.Text = "bbb";
                break;

            case "c":
                Label1.Text = "ccc";
                break;
        }
    }
    protected void a(object sender, CommandEventArgs e)
    {

    }
    protected void AdRotator1_AdCreated(object sender, AdCreatedEventArgs e)
    {
        string url = e.AlternateText;
        string sdate = e.AdProperties["Sdate"].ToString();
        string edate = e.AdProperties["Edate"].ToString();
        Response.Write(url + "start date:" + sdate + ",end date:" + edate);
    }
    protected void BulletedList2_DataBound(object sender, EventArgs e)
    {
        for (int i = 0; i         {
            BulletedList2.Items[i].Value = "http://www." + BulletedList2.Items[i].Value + ".com";
        }

    }

    protected void BulletedList3_Click(object sender, BulletedListEventArgs e)
    {
        Response.Write("
"+BulletedList3.Items[e.Index].Value);
    }
}

----------------------------

广告控件的XML文档 Ad.XML内容:




    ~/image/baidu.gif
    http://www.baidu.com
    baidu
    baiduzhidao
    50
    6/23/2008
    6/29/2008


    ~/image/google.gif
    http://www.google.com
    google
    google gou
    30
    6/23/2008
    7/23/2008


    ~/image/iask.gif
    http://www.iask.com
    iask
    aiwen
    50
    7/1/2008
    9/23/2008

net3:Button的CommandName使用,AdRotator,BulletedList的使用

标签:webp   ring   security   导入   click   for   data   keyword   val   

原文地址:http://www.cnblogs.com/handboy/p/7143811.html

上一篇:net3:Calendar控件的使用

下一篇:js简介


评论


亲,登录后才可以留言!