Code:
/ DotNET / DotNET / 8.0 / untmp / Orcas / RTM / ndp / fx / src / xsp / System / Web / Extensions / ui / ControlUtil.cs / 2 / ControlUtil.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.Web.Resources; using System.Web.UI; namespace System.Web.UI { internal class ControlUtil { internal static Control FindTargetControl(string controlID, Control control, bool searchNamingContainers) { Control foundControl; if (searchNamingContainers) { Control currentContainer; foundControl = null; // DevDiv 73305: Do not assume starting control is not a naming container. if (control is INamingContainer) { currentContainer = control; } else { currentContainer = control.NamingContainer; } do { foundControl = currentContainer.FindControl(controlID); currentContainer = currentContainer.NamingContainer; } while (foundControl == null && currentContainer != null); } else { foundControl = control.FindControl(controlID); } return foundControl; } internal static bool IsBuiltInHiddenField(string hiddenFieldName) { // Returns true is the field name represents a hidden field generated // by ASP.NET's core runtime. This includes fields such as ViewState and // EventValidation, but not ones generated by specific controls such as // TreeView and WebParts. // If the field is less than two chars long it's not built-in. (Perf) if (hiddenFieldName.Length <= 2) { return false; } // If it doesn't start with two underscores, it's not built-in. (Perf) if (hiddenFieldName[0] != '_' || hiddenFieldName[1] != '_') { return false; } // Examine list of built-in ASP.NET fields. The list was created by examining // the ASP.NET source code for hidden field registration and rendering. // We exclude __VIEWSTATEENCRYPTED and __VIEWSTATEFIELDCOUNT from the list // since they're covered by the general __VIEWSTATE part. return hiddenFieldName.StartsWith("__VIEWSTATE", StringComparison.Ordinal) || String.Equals(hiddenFieldName, "__EVENTVALIDATION", StringComparison.Ordinal) || String.Equals(hiddenFieldName, "__LASTFOCUS", StringComparison.Ordinal) || String.Equals(hiddenFieldName, "__SCROLLPOSITIONX", StringComparison.Ordinal) || String.Equals(hiddenFieldName, "__SCROLLPOSITIONY", StringComparison.Ordinal) || String.Equals(hiddenFieldName, "__EVENTTARGET", StringComparison.Ordinal) || String.Equals(hiddenFieldName, "__EVENTARGUMENT", StringComparison.Ordinal) || String.Equals(hiddenFieldName, "__PREVIOUSPAGE", StringComparison.Ordinal); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XPathNodeIterator.cs
- DynamicEntity.cs
- CopyNamespacesAction.cs
- CharacterBufferReference.cs
- SID.cs
- ReservationNotFoundException.cs
- SizeValueSerializer.cs
- ComAdminInterfaces.cs
- IOException.cs
- ReferenceSchema.cs
- HostProtectionPermission.cs
- FontStyles.cs
- RequestQueue.cs
- PagerSettings.cs
- GridViewColumnHeader.cs
- UriScheme.cs
- _RegBlobWebProxyDataBuilder.cs
- JavaScriptObjectDeserializer.cs
- _SslStream.cs
- MiniModule.cs
- ComPlusTypeLoader.cs
- SafeNativeMethods.cs
- AssociationEndMember.cs
- XmlSchemaProviderAttribute.cs
- UIPermission.cs
- FormsAuthenticationTicket.cs
- WebPartTransformer.cs
- ScrollProperties.cs
- BaseDataList.cs
- StrokeNodeEnumerator.cs
- DefaultAssemblyResolver.cs
- PropertyNames.cs
- HierarchicalDataSourceDesigner.cs
- SystemIPGlobalProperties.cs
- OrderPreservingPipeliningSpoolingTask.cs
- EntitySqlException.cs
- SplitterEvent.cs
- NotifyCollectionChangedEventArgs.cs
- CaretElement.cs
- XmlNodeChangedEventManager.cs
- SecurityHelper.cs
- SplitterEvent.cs
- PrintDialogException.cs
- ScaleTransform3D.cs
- TypeUsage.cs
- BitmapCacheBrush.cs
- TreeNode.cs
- TimelineGroup.cs
- LocatorBase.cs
- CqlParserHelpers.cs
- InkCanvasFeedbackAdorner.cs
- ShaderEffect.cs
- PolicyException.cs
- ColumnTypeConverter.cs
- ThicknessConverter.cs
- JapaneseLunisolarCalendar.cs
- DebuggerAttributes.cs
- SecurityTokenValidationException.cs
- NetSectionGroup.cs
- ConfigXmlReader.cs
- PointF.cs
- SHA256.cs
- SafeEventLogWriteHandle.cs
- RtfFormatStack.cs
- WorkflowControlEndpoint.cs
- ArithmeticException.cs
- EngineSiteSapi.cs
- DesignerAttributeInfo.cs
- WarningException.cs
- XhtmlStyleClass.cs
- Transactions.cs
- FormsAuthenticationCredentials.cs
- CodeAttributeDeclaration.cs
- nulltextcontainer.cs
- PolicyManager.cs
- PanelDesigner.cs
- BitArray.cs
- FilteredReadOnlyMetadataCollection.cs
- TableLayoutStyle.cs
- OdbcCommandBuilder.cs
- TextSpanModifier.cs
- HwndPanningFeedback.cs
- PeerNameRecordCollection.cs
- Signature.cs
- FilteredXmlReader.cs
- UidManager.cs
- xmlglyphRunInfo.cs
- HtmlInputFile.cs
- HealthMonitoringSection.cs
- cryptoapiTransform.cs
- ExcCanonicalXml.cs
- DataGridViewComboBoxEditingControl.cs
- HitTestParameters3D.cs
- ObjectDataSourceDesigner.cs
- SqlReorderer.cs
- InheritanceRules.cs
- PageContentCollection.cs
- CallContext.cs
- ClientRuntimeConfig.cs
- ParserHooks.cs