I have three usercontrols uc1.ascx ,uc2.ascx ,UC_Combined.ascx
UC1 has one label control
UC2 has one Dropdownlist Control
UC_Combined is created by combining UC1 and UC2
Now I placed UC_Combined.ascx on my aspx page webForm1.aspx has one more Label servercontrol
Now when I run my webForm1.aspx page I can see see DropDown list and a Label
Now when I select an Item from dropdown list ,I want the value of the selection to display to the Label
Can some one suggest me how can I do this .