Join Dotnetcodes DotnetCodes.com is online Discussion Forum for Software professionals . It lets you find friends around the world and Create professional network that share similar interests as you. Get help on ur projects by industry specialists. Also get answers to all ur technical/placement related querries.Get an edge over others.
Already MemberClick here to login
ASP.net MVC Interview Questions Answers Interview Questions
Serial Number in SSRS Articles
Get Started Developing for Android Apps with Eclipse Articles
How to Print a Crystal Report direct to printer Articles
Razor View Engine Interview Questions Answers Interview Questions
.Net framework 4.0 Interview Questions Answers Interview Questions
SQL server reporting services Interview Questions (SSRS) part 1 Articles
Whats New in ASP.NET 4.0 Part 2 Articles
Difference between Encapsulation and Abstraction Interview Questions
Explaining SDLC -System Development Life Cycle Articles
SPIRE PDF Library Articles
Infosys Interview Questions Interview Questions
Html5 interview questions and answers Interview Questions
Dynamic Menu using HTML List Tag and CSS in ASP.Net Articles
SharePoint 2010 interview Questions Answers Interview Questions
Submit Articles | More Articles..

C# Sample Code Using Delegates in ASP.NET

Posted By: rakesh On:12/6/2011 12:25:56 AM in:Source Codes Category:ASP.NET Hits:3507
C# Sample Code Using Delegates in ASP.NET

C# Sample Code Using Delegates in ASP.NET

using System;
using System.Data;
using System.Configuration;
using System.Collections;
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 Header : System.Web.UI.UserControl
{
public event ColorChangedEventHandler ColorChanged;
public event LinkClickEventHandler Clicked;
string _texts;
string _text;
public void Page_Init(object sender, EventArgs e)
{
//Wire-up the EventHandler
this.colorList.SelectedIndexChanged += new System.EventHandler(Index_Changed);
if (_texts.IndexOf('$') > 0)
{
string[] Texts = _texts.Split('$');
LinkButton lnk;
Label lbl;
for(int cnt = 0; cnt < Texts.Length; cnt++)
{
lnk = new LinkButton();
lnk.Text = Texts[cnt];
lnk.Click += new EventHandler(lnk_Click);
plc.Controls.Add(lnk);
lbl = new Label();
lbl.Text = "";
plc.Controls.Add(lbl);
}
}
}
public string Text
{
set
{
_text = value;
}
get
{
return _text;
}
}

void lnk_Click(object sender, EventArgs e)
{
LinkButton lb = (LinkButton)sender;
_text = lb.Text;
if (Clicked != null)
{
//Call the Delegate and pass the ColorEventArgs
Clicked(this, e);
}
}
//Method called when the DropDownList value changes
public void Index_Changed(object sender, EventArgs e)
{
//Create a new Arguments Object
ColorEventArgs myArgs = new ColorEventArgs();
//Get the color selected
myArgs.Color =colorList.SelectedItem.Text;
colorList.BackColor = System.Drawing.Color.Blue;
//Check if any method has subscribed for notification
//If you don't do this then an exception gets thrown
//When there are no methods subscribing to the Event
if(ColorChanged!=null)
{
//Call the Delegate and pass the ColorEventArgs
ColorChanged(this, myArgs);
}
}
public string Texts
{
get
{
return _texts;
}
set
{
_texts = value;
}
}
}

public delegate void AddClickEventHandler(object sender,EventArgs e);
//Define a Delegate
public delegate void LinkClickEventHandler(object sender,EventArgs e);
//Define a Delegate
public delegate void ColorChangedEventHandler(object sender, ColorEventArgs e);
//Define a Class that Extends the EventArgs

public class ColorEventArgs : System.EventArgs
{
private string color;
//Color Property
public string Color
{
get
{
return this.color;
}
set
{
this.color = value;
}
}
}
———————————————————————————————————————————————————
Using this in another page. Include the header.ascx file

protected void Page_Load(object sender, EventArgs e)
{
//attach functionality to the events in the header
Header1.ColorChanged += new ColorChangedEventHandler(Header1_ColorChanged);
Header1.Clicked += new LinkClickEventHandler(Header1_Clicked);
Database db = DatabaseFactory.CreateDatabase();
DataSet ds = db.ExecuteDataSet(CommandType.StoredProcedure, "usp_Employees");
}

void Header1_Clicked(object sender, EventArgs e)
{
Response.Write(Header1.Text);
}

void Header1_ColorChanged(object sender, ColorEventArgs e)
{
Response.Write("header color changed" + e.Color);
//throw new Exception("The method or operation is not implemented.");
}
comments powered by Disqus
User Profile
Rakesh Sinha
Sr. Technical Lead
New Delhi , India
Email :You must Log In to access the contact details.
Latest Post from :rakesh
Hacked By 4xroix
View: 30 | Submitted on: 5/28/2019 9:07:35 PM
Which party you want to vote in Loksabha elections 2019?
View: 783 | Submitted on: 10/12/2018 5:59:06 PM
Response.Redirect vs Server.Transfer
View: 502 | Submitted on: 12/27/2015 2:26:38 PM
The test form is only available for requests from the local machine.
View: 740 | Submitted on: 11/3/2015 9:54:36 PM
Difference between web service WCF and Web API
View: 7939 | Submitted on: 10/28/2015 9:23:51 PM
Submit Articles | All Post of This User..


Advertise About Us Private Policy Terms of use
All rights reserved to dotnetcodes. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks.
Best viewed at 1024 x 768 resolution with Internet Explorer 5.0 or Mozila Firefox 3.5 or Google Crome and higher