how to store the value in textbox using delegates if we have
two user control. the value will be called from one user
control to another user control. Loading and unloading will
be done through delegates.

Answer Posted / thomasjoseph valiyamattam

first user control
---------------------------

Create an event in the first user control
public delegate void ctrlchanges(object sender,
DelegateArgs e);
public event ctrlchanges ctrlChange;

in the first usercontrols button click
1) set values to DelegateArgs properties id and name

2) then Invoke the delegates
if (ctrlChange != null)
{
ctrlChange(this, args);
}

/*
DelegateArgs is a class having properties to set and get
id and name.
here id and name are set from first user ctrol and get at
second user control
this is to reflect changes in the first control to second
control
*/

second user control
--------------------------

in the seccond user control
write a function to get the DelegateArgs members and set
to textBoxes

public void ChangeDetails(object sender, DelegateArgs
args)
{
txt1.Text = args.Id.ToString();
txt2.Text = args.Name;
}


Aspx.cs
---------------
write the code in the page load
to access function of second user control from first
user control

protected void Page_Load(object sender, EventArgs e)
{

((DelegateCtrl_1)DelegateCtrl_1_1).ctrlChange += new
DelegateCtrl_1.ctrlchanges(((DelegateCtrl_2)
DelegateCtrl_2_1).ChangeDetails);

}

/*
DelegateCtrl_1 is the first user control and its id is
DelegateCtrl_1_1

<uc1:DelegateCtrl_1 ID="DelegateCtrl_1_1"
runat="server" />
*/

Is This Answer Correct ?    1 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Overloaded constructor will call default constructor internally?

567


What are the advantages of using assemble language programming?

524


What is array and arraylist?

544


What do you understand by an Implicit Variable?

526


What is the difference between Decorator and Adapter pattern?

528






What are strongly typed objects?

484


What debugging tools come with the .NET ssSDK?

696


How long does it take to learn c# for unity?

487


What is the boxing and unboxing in c#?

502


What is the difference between overriding and overloading in systemverilog?

458


Why do I get a "cs5001: does not have an entry point defined" error when compiling?

511


Define thread? Explain about multithreading?

569


What are collections in c#?

475


What is Implicit conversion in C#?

566


How garbage collection deals with circular references.

471