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