Click here to Skip to main content
15,897,704 members
Articles / Web Development / ASP.NET

AdRotator Using ASP.NET Code Behind

Rate me:
Please Sign up or sign in to vote.
3.65/5 (39 votes)
2 May 2005CPOL4 min read 442.9K   11.8K   64  
This article will teach you how to develop a website with ad management system.
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace AdRotator_VT
{
	/// <summary>
	/// Summary description for WebForm1.
	/// </summary>
	public class WebForm1 : System.Web.UI.Page
	{
		protected System.Web.UI.WebControls.AdRotator CAdRotator;
		protected System.Web.UI.WebControls.PlaceHolder PlaceHolder1;
	
		private void Page_Load(object sender, System.EventArgs e)
		{
			// Put user code to initialize the page here
			// Put user code to initialize the page here
			// Create an AdRotator control.
			AdRotator rotator = new AdRotator();

			// Set the control's properties.
			rotator.AdvertisementFile = "AdRotatorFiles.xml";

			// Add the control to the Controls collection of a 
			// PlaceHolder control.  
			PlaceHolder1.Controls.Add(rotator);

			//*** Target Connter ***//
			
//			String source = Request.QueryString["ad"];
//			String target = Request.QueryString["target"];
//			int adcounter;
//			if(Application[source] == null) 
//			{
//				adcounter = 0;
//			}
//			else
//			{
//				adcounter = (int) Application[source];
//			}
//			adcounter += 1;
//			Application[source] = adcounter;
//			Response.Redirect(target);

		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		/// Required method for Designer support - do not modify
		/// the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{    
			this.Load += new System.EventHandler(this.Page_Load);

		}
		#endregion
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer at Zealots
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions