Hi. I have a MasterPage that is referenced by all the pages in my web app. Inside one of the page, I placed an UserControl inside the <asp:Content> tag. The problem is none of the events in that user control are being fired, theme is not being applied to that control, and most importantly, when viewing the source for that page, I notice the CliendID of the UserControl and its child controls do NOT contain the ContentPlaceHolder ID. So I am guessing that's why none of the events are working since the Server expects the <asp:Content> tag to apply the INamingContainer to its child controls. However, if I wrap that SAME usercontrol inside another usercontrol and drop that on the page, everything works fine.....help?