I'm using Asp.net with Vb and I Have user control and I put it inside My master page I need to access this UC Properties and methods from child Page.
Any help please,
I'm using Asp.net with Vb and I Have user control and I put it inside My master page I need to access this UC Properties and methods from child Page.
Any help please,
In the child page add this directive:
<%@ MasterType TypeName="MasterPage" %>
Then, the Master property of the child page will have all the type information.