I have included a user control in another statically following code :
place the folowing directive in the asp code of the parent page or usercontrol:
<%@ Register src="Name_of_your_child_control.ascx"
tagname="Name_of_your_child_control" tagprefix="uc1" %>
use the following tag in the asp-code of the parent page/control:
<uc1:Name_of_your_child_control ID="Name_of_your_child_control1"
runat="server" />
..... But the issue is...i am not able to access the public properties of user control which got included(child user control) in given user control(parent user control)...
Please help :(