1 write to ControlID
System.Web (1)
UI\ControlBuilder.cs (1)
739
entry.
ControlID
= controlID;
10 references to ControlID
System.Web (10)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (7)
1039
if (String.Compare(previousControlName, entry.
ControlID
, StringComparison.Ordinal) != 0) {
1047
previousControlName = entry.
ControlID
;
1057
CodeVariableDeclarationStatement controlDecl = new CodeVariableDeclarationStatement(entry.ControlType, entry.
ControlID
);
1064
string findControlParameter = entry.
ControlID
;
1068
CodeAssignStatement findControlAssign = new CodeAssignStatement(new CodeVariableReferenceExpression(entry.
ControlID
),
1081
ensureControlExpression.Left = new CodeVariableReferenceExpression(entry.
ControlID
);
1093
CodeExpression controlPropertyExpression = CodeDomUtility.BuildPropertyReferenceExpression(new CodeVariableReferenceExpression(entry.
ControlID
), entry.Name);
UI\BindableTemplateBuilder.cs (3)
92
if (String.Compare(previousControlName, entry.
ControlID
, StringComparison.Ordinal) != 0) {
99
previousControlName = entry.
ControlID
;
102
control = container.FindControl(entry.
ControlID
);