Click here to Skip to main content
16,018,938 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hiiiii............
In master page have a popup and in that popup having a one grid view that popup will access to its child page at the click of image button.
in child page many image buttons are in,at click of one particular image button that particular data or grid view will display,for e.g. if we click on owner image button owner data bind grid view will display or if we click on lead image button lead data of grid view will display...but in master page having only one popup and only one grid view
Posted

1 solution

You can try with
MasterPage mp = this.Master;

Now you can find the control of master page using FindControl() method
mp.FindControl("PopupControlName");
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900