A.DetailsView
B.ObjectDataSource
C.Content
D.CompositeControl
第1题:
A.IWeb Event Custom Evaluator
B.Web Event Provider
C.Web Base Event
D.Web Audit Event
第2题:
A.确保Web控件从WebControl类继承。
B.确保Web控件从Control类继承.
C.确保Web控件从CompositeControl类继承.
D.确保Web控件从UserControl类继承.
第3题:
A.ZoneTemplate
B.Control
C.WebPartManager
D.WebPart
第4题:
A.控件从System.Web.UI.Control继承。
B.控件从System.Web.UI.WebControls.CompositeControl继承.
C.控件从System.Web.UI.WebControls.WebControl继承.
D.控件从System.Web.UI.UserControl继承
第5题:
你正在创建一个自定义服务器控件,并且你需要此控件支持在Visual Studio 2005设计器中使用。为此,你创建了两个类:一个是从Composite Control继承的myControl类,另一个是从Composite ControlDesigner继承的myControlDesigner类。你需要把myControl和myControlDesigner进行关联。下面那一个可以正确达到此目的?()
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