16 references to Control
System.Web (16)
UI\ControlAdapter.cs (10)
40
if(
Control
!= null)
41
return
Control
.Page;
52
if(
Control
!= null &&
Control
.Page != null)
53
return
Control
.Page.PageAdapter;
82
Control
.OnInit(e);
86
Control
.OnLoad(e);
90
Control
.OnPreRender(e);
107
Control
.OnUnload(e);
115
Control
.CreateChildControls();
UI\PageAdapter.cs (5)
77
Debug.Assert(
Control
!= null);
78
if(
Control
!= null) {
79
return
Control
.Page.DeterminePostBackMode();
91
if (
Control
!= null) {
92
return
Control
.Page.DeterminePostBackModeUnvalidated();
UI\WebControls\Adapters\WebControlAdapter.cs (1)
19
return (WebControl)base.
Control
;