I have an ASPX page where I call an ASCX control. In the Page_Load of aspx page i need some data of ascx page_load. but the problem is aspx page_load is called first and then the ascx page_load. Depending on some data calculation in ascx some control in
ascx is made visible. I want to access tht visibility in aspx page but not able to as page_load of aspx is done first. How can I achieve this?
Go to the complete details ...