Introduction
In VS 2003, when you added a web user control to a web form it appeared as an
"box" in design view. This makes it easy to manage multiple user controls in one page.
In VS 2005, when you add a web user control to a web form, it appears as designed.
Problem
The problem is that it does not let you scroll through the rest of the other components on the form that are not part of the user control.
Solution
The solution is the wrap your user controls in the form around a placeholder. This will make the control not display in the form. Here is an example of hiding a control called UsercontrolTEST1 with a placerholder called PlaceHolder1:
<asp:PlaceHolder ID="PlaceHolder1" runat="server">
<uc1:usercontrolTEST ID="UsercontrolTEST1" runat="server" />
</asp:PlaceHolder>
That's All Folks! Short and Simple.
This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.
A list of licenses authors might use can be found here