I working on an asp.net app. I'm have a user control inside a server control, say:
<sc:MyServerControl ID=...>
<uc:MyUserControl>
</uc:MyUserControl>
</sc:MyServerControl>
But it seems that when I use the user control inside the server control, user control doesn't get loaded. I tried putting a break point at the beginning of the Page_Load
method but it doesn't stop there.
tks