Dear Expert I have On user Control named as Uc1.axcs one property Named as
public string ExamApp1
{
get { return txtExamAppeared1.Text; }
}
and i had used to it another user control uc2.axcs
and then after i had used the uc2.axcs user control in the page test.aspx
My question is that i want to use the ExamApp1 in the page test.aspx how can i do that without
Find Control property is their any way to retun Uc1 usercontrol from uc2 through property and
and used the ExamApp1 property through that
You should be able to expose that through a method in
uc2:Where
uc1Instanceis the id used for youruc1control instance in youruc2control.