4 overrides of FindControl
System.Web (4)
UI\DataSourceControl.cs (1)
156public override Control FindControl(string id) {
UI\HierarchicalDataSourceControl.cs (1)
122public override Control FindControl(string id) {
UI\Page.cs (1)
1497public override Control FindControl(String id) {
UI\WebControls\xml.cs (1)
363public override Control FindControl(string id) {
52 references to FindControl
System.Web (39)
ModelBinding\ControlValueProvider.cs (1)
33Control foundControl = dataControl.FindControl(controlId) ?? DataBoundControlHelper.FindControl(dataControl, controlId);
UI\BindableTemplateBuilder.cs (1)
102control = container.FindControl(entry.ControlID);
UI\Control.cs (2)
2071Control childControl = FindControl(controlId); 3180Control c = FindControl(id);
UI\DataSourceControl.cs (1)
157return base.FindControl(id);
UI\HierarchicalDataSourceControl.cs (1)
123return base.FindControl(id);
UI\WebControls\BaseValidator.cs (4)
428Control c = NamingContainer.FindControl(name); 495Control c = FindControl(name); 512Control c = NamingContainer.FindControl(name); 793Control c = NamingContainer.FindControl(validateId);
UI\WebControls\CreateUserWizard.cs (7)
3574Control answerTextBox = FindControl(_answerID); 3601Control confirmPasswordTextBox = FindControl(_confirmPasswordID); 3629Control emailTextBox = FindControl(_emailID); 3657Control control = FindControl(_errorMessageID); 3692Control passwordTextBox = FindControl(_passwordID); 3728Control questionTextBox = FindControl(_questionID); 3754Control userNameTextBox = FindControl(_userNameID);
UI\WebControls\DataBoundControlHelper.cs (2)
40return control.FindControl(controlID); 48foundControl = currentContainer.FindControl(controlID);
UI\WebControls\Label.cs (1)
149Control wc = FindControl(associatedControlID);
UI\WebControls\LoginUtil.cs (1)
312Control control = FindControl(id);
UI\WebControls\ModelErrorMessage.cs (1)
98var control = FindControl(validateId);
UI\WebControls\MultiView.cs (1)
280View view = FindControl((string)ce.CommandArgument) as View;
UI\WebControls\TableCell.cs (1)
258TableHeaderCell headerCell = namingContainer.FindControl(id) as TableHeaderCell;
UI\WebControls\Wizard.cs (12)
2134WebControl button = item.FindControl(SideBarButtonID) as WebControl; 2352var sideBarList = sideBarContainer.FindControl(DataListID) as IWizardSideBarListControl; 2508var placeholder = layoutContainer.FindControl(NavigationPlaceholderId); 2520var placeholder = layoutContainer.FindControl(HeaderPlaceholderId); 2545var placeholder = layoutContainer.FindControl(SideBarPlaceholderId); 2561var placeholder = layoutContainer.FindControl(WizardStepPlaceholderId); 3383_cancelButton = FindControl(Wizard.CancelButtonID) as IButtonControl; 3398_nextButton = FindControl(Wizard.StepNextButtonID) as IButtonControl; 3413_previousButton = FindControl(Wizard.StepPreviousButtonID) as IButtonControl; 3428_finishButton = FindControl(Wizard.FinishButtonID) as IButtonControl; 3460_previousButton = FindControl(Wizard.FinishPreviousButtonID) as IButtonControl; 3483_nextButton = FindControl(Wizard.StartNextButtonID) as IButtonControl;
UI\WebControls\WizardSideBarListControlItem.cs (1)
34return _container.FindControl(id);
UI\WebControls\xml.cs (1)
364return base.FindControl(id);
UI\WebParts\WebPartManager.cs (1)
3525WebPart part = (WebPart)FindControl(id);
System.Web.DynamicData (7)
DynamicData\DynamicControl.cs (1)
209if (FindControl(id) == null)
DynamicData\DynamicDataExtensions.cs (1)
227return control.FindControl(DynamicControl.GetControlIDFromColumnName(columnName));
DynamicData\DynamicValidator.cs (1)
44Control c = NamingContainer.FindControl(ControlToValidate);
DynamicData\FilterRepeater.cs (1)
210var filter = item.FindControl(DynamicFilterContainerId) as FilterUserControlBase;
DynamicData\QueryableFilterRepeater.cs (1)
110DynamicFilter filter = item.FindControl(DynamicFilterContainerId) as DynamicFilter;
DynamicData\Util\Misc.cs (2)
289return control.FindControl(controlID); 299foundControl = currentContainer.FindControl(controlID);
System.Web.Extensions (4)
UI\ControlUtil.cs (2)
30foundControl = currentContainer.FindControl(controlID); 36foundControl = control.FindControl(controlID);
UI\ExtenderControl.cs (1)
130Control targetControl = FindControl(TargetControlID);
UI\WebControls\ListView.cs (1)
2057return container.FindControl(containerID);
System.Web.Mobile (2)
UI\MobileControls\BaseValidator.cs (1)
320Control control = NamingContainer.FindControl(name);
UI\MobileControls\MobileControl.cs (1)
198Form childForm = ctl.FindControl(formID) as Form;