A.<%@ OutputCache Duration="300" Shared="true" VaryByParam="None" %> B.<%@ OutputCache Duration="5" VaryByParam="None" %> C.<%@ OutputCache Duration="5" Shared="true" VaryByParam="None" %>
A.[Designer(myControlDesigner)] public class myControl: CompositeControl B.[Designer(typeof(myControl))] public class myControlDesigner: CompositeControlDesigner C.[Designer(myControl)] public class myControlDesigner: CompositeControlDesigner D.[Designer(typeof(myControlDesigner))] public class myControl: CompositeControl
A.<asp:Label BackColor="White" ForeColor="Blue" Font-Name="Times New Roman"Font-Size="10px" /> B.<asp:Label runat="server" ID="BlueLabel" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" /> C.<asp:Label ID="BlueLabel" BackColor="White" ForeColor="Blue" Font-Name="Times New Roman" Font-Size="10px" /> D.<asp:Label runat="server" BackColor="White" ForeColor="Blue"Font-Name="Times New Roman" Font-Size="10px" />