Dear,
Can you please tell me how to access a control declared in a Master Page in a content page.
I have a ModalPopUpExtender in Master Page and i want to acces it from a content page,can you please tell me how can i do that.
Thanks
You can access in following way
ModalPopupExtender mp1 = (this.Master.FindControl("ModalPopup1") as ModalPopupExtender); mp1.Show();
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.