I have a masterpage and 2 usercontrols(A.ascx & B.ascx) on this masterpage. In these one of them usercontrol(A.ascx) have another usercontrol(C.ascx). And I use this masterpage on default.aspx page. On this Default.aspx page we have one more usercontrol i.e. (D.ascx).

Now my problem is that I want to changeover the css class of C.ascx usercontrol on changing in D.ascx. Or how to call and access any function of c.ascx in user control d.ascx.

Hence this d.ascx in on default.aspx page and c.ascx is in masterpage usercontrol's usercontrol.

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted
UserControl B = (UserControl)this.NamingContainer.NamingContainer.FindControl("B1");   
B.GetType().GetMethod("check").Invoke(B,null).ToString();
link|improve this answer
yeh its work.... – Gaurav Agrawal Jun 27 '11 at 16:59
Great !!!!!!!!! – Saurabh Jun 28 '11 at 4:18
feedback

Below might help you.

 UserControl C = (UserControl)this.NamingContainer.FindControl("A").FindControl("C");  

You can access any method of user control c by its Object"

link|improve this answer
I did but it did't work, i make a function in c.ascx and by using this method i didn't call it. – Gaurav Agrawal Jun 27 '11 at 6:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.