In my asp.net application, I have a user control UC1. It contains another user control UC2 and some other controls. How can I access those other controls from the user control 2?
Thanks.
Printable View
In my asp.net application, I have a user control UC1. It contains another user control UC2 and some other controls. How can I access those other controls from the user control 2?
Thanks.
You can make the UC2 control Public, which should allow it to show or else you can make the Property's of UC2 available by Adding them to UC1..