I have created on page and added WebExplorerBar and within ExplorerBar I have created the User Conrol. Is there any i can access the usercontrol controls in this page?
Hi KarthikaSubbiah,
Thank you for posting in the community.
I assume that you are templating your user control in WebExplorerBar's group or item. This should be achievable using something like:
this.WebExplorerBar1.Groups[0].FindControl("Button1")
or, respectively:
this.WebExplorerBar1.Groups[0].Items[0].FindControl("Button1")
Please let me know if this helps.
Please do not hesitate to contact me if you need further assistance regarding this scenario.