Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / DataBoundControlHelper.cs / 7 / DataBoundControlHelper.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Data; using System.Security.Permissions; using System.Web.Util; ////// Helper class for DataBoundControls and v1 data controls. /// This is also used by ControlParameter to find its associated /// control. /// internal static class DataBoundControlHelper { ////// Walks up the stack of NamingContainers starting at 'control' to find a control with the ID 'controlID'. /// public static Control FindControl(Control control, string controlID) { Debug.Assert(control != null, "control should not be null"); Debug.Assert(!String.IsNullOrEmpty(controlID), "controlID should not be empty"); Control currentContainer = control; Control foundControl = null; if (control == control.Page) { // If we get to the Page itself while we're walking up the // hierarchy, just return whatever item we find (if anything) // since we can't walk any higher. return control.FindControl(controlID); } while (foundControl == null && currentContainer != control.Page) { currentContainer = currentContainer.NamingContainer; if (currentContainer == null) { throw new HttpException(SR.GetString(SR.DataBoundControlHelper_NoNamingContainer, control.GetType().Name, control.ID)); } foundControl = currentContainer.FindControl(controlID); } return foundControl; } ///// return true if the two string arrays have the same members /// public static bool CompareStringArrays(string[] stringA, string[] stringB) { if (stringA == null && stringB == null) { return true; } if (stringA == null || stringB == null) { return false; } if (stringA.Length != stringB.Length) { return false; } for (int i = 0; i < stringA.Length; i++) { if (!String.Equals(stringA[i], stringB[i], StringComparison.Ordinal)) { return false; } } return true; } // Returns true for types that can be automatically databound in controls such as // GridView and DetailsView. Bindable types are simple types, such as primitives, strings, // and nullable primitives. public static bool IsBindableType(Type type) { if (type == null) { return false; } Type underlyingType = Nullable.GetUnderlyingType(type); if (underlyingType != null) { // If the type is Nullable then it has an underlying type, in which case // we want to check the underlying type for bindability. type = underlyingType; } return (type.IsPrimitive || (type == typeof(string)) || (type == typeof(DateTime)) || (type == typeof(Decimal)) || (type == typeof(Guid)) || // support for new SqlServer 2008 types: (type == typeof(DateTimeOffset)) || (type == typeof(TimeSpan))); } internal static void ExtractValuesFromBindableControls(IOrderedDictionary dictionary, Control container) { IBindableControl bindableControl = container as IBindableControl; if (bindableControl != null) { bindableControl.ExtractValues(dictionary); } foreach (Control childControl in container.Controls) { ExtractValuesFromBindableControls(dictionary, childControl); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.Collections.Specialized; using System.ComponentModel; using System.Data; using System.Security.Permissions; using System.Web.Util; ////// Helper class for DataBoundControls and v1 data controls. /// This is also used by ControlParameter to find its associated /// control. /// internal static class DataBoundControlHelper { ////// Walks up the stack of NamingContainers starting at 'control' to find a control with the ID 'controlID'. /// public static Control FindControl(Control control, string controlID) { Debug.Assert(control != null, "control should not be null"); Debug.Assert(!String.IsNullOrEmpty(controlID), "controlID should not be empty"); Control currentContainer = control; Control foundControl = null; if (control == control.Page) { // If we get to the Page itself while we're walking up the // hierarchy, just return whatever item we find (if anything) // since we can't walk any higher. return control.FindControl(controlID); } while (foundControl == null && currentContainer != control.Page) { currentContainer = currentContainer.NamingContainer; if (currentContainer == null) { throw new HttpException(SR.GetString(SR.DataBoundControlHelper_NoNamingContainer, control.GetType().Name, control.ID)); } foundControl = currentContainer.FindControl(controlID); } return foundControl; } ///// return true if the two string arrays have the same members /// public static bool CompareStringArrays(string[] stringA, string[] stringB) { if (stringA == null && stringB == null) { return true; } if (stringA == null || stringB == null) { return false; } if (stringA.Length != stringB.Length) { return false; } for (int i = 0; i < stringA.Length; i++) { if (!String.Equals(stringA[i], stringB[i], StringComparison.Ordinal)) { return false; } } return true; } // Returns true for types that can be automatically databound in controls such as // GridView and DetailsView. Bindable types are simple types, such as primitives, strings, // and nullable primitives. public static bool IsBindableType(Type type) { if (type == null) { return false; } Type underlyingType = Nullable.GetUnderlyingType(type); if (underlyingType != null) { // If the type is Nullable then it has an underlying type, in which case // we want to check the underlying type for bindability. type = underlyingType; } return (type.IsPrimitive || (type == typeof(string)) || (type == typeof(DateTime)) || (type == typeof(Decimal)) || (type == typeof(Guid)) || // support for new SqlServer 2008 types: (type == typeof(DateTimeOffset)) || (type == typeof(TimeSpan))); } internal static void ExtractValuesFromBindableControls(IOrderedDictionary dictionary, Control container) { IBindableControl bindableControl = container as IBindableControl; if (bindableControl != null) { bindableControl.ExtractValues(dictionary); } foreach (Control childControl in container.Controls) { ExtractValuesFromBindableControls(dictionary, childControl); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WebPartUserCapability.cs
- ApplicationManager.cs
- LinkedList.cs
- ProjectionQueryOptionExpression.cs
- GradientPanel.cs
- TypeDelegator.cs
- DescendentsWalker.cs
- XmlMemberMapping.cs
- QilGeneratorEnv.cs
- DbConnectionPoolGroup.cs
- XmlDigitalSignatureProcessor.cs
- tooltip.cs
- SharedPersonalizationStateInfo.cs
- SetIterators.cs
- Serializer.cs
- ScriptMethodAttribute.cs
- VerificationAttribute.cs
- ExtentCqlBlock.cs
- RadioButtonList.cs
- PreApplicationStartMethodAttribute.cs
- ConstraintConverter.cs
- _HeaderInfoTable.cs
- MarkupCompilePass2.cs
- AttributeCollection.cs
- embossbitmapeffect.cs
- Transform3D.cs
- ArgumentException.cs
- ControlPager.cs
- DataControlLinkButton.cs
- FormClosingEvent.cs
- SimpleRecyclingCache.cs
- DispatcherExceptionEventArgs.cs
- WebMessageEncodingBindingElement.cs
- ListViewGroup.cs
- BuiltInExpr.cs
- WorkflowWebService.cs
- FillBehavior.cs
- Errors.cs
- ApplyImportsAction.cs
- SystemDropShadowChrome.cs
- ProjectionPlanCompiler.cs
- PerformanceCounterLib.cs
- FormatterServices.cs
- DataGridLinkButton.cs
- DuplexChannelFactory.cs
- ControlPropertyNameConverter.cs
- TemplateField.cs
- RawStylusSystemGestureInputReport.cs
- XamlParser.cs
- SerializerProvider.cs
- ActivityBuilderXamlWriter.cs
- VariableDesigner.xaml.cs
- LongTypeConverter.cs
- SchemaNotation.cs
- TemplatePartAttribute.cs
- DiagnosticTraceSchemas.cs
- InputScopeManager.cs
- RtfToken.cs
- OptimizedTemplateContentHelper.cs
- CmsUtils.cs
- ThaiBuddhistCalendar.cs
- SqlUDTStorage.cs
- _Events.cs
- DynamicQueryableWrapper.cs
- BindableTemplateBuilder.cs
- ContextProperty.cs
- StatusBar.cs
- SqlReferenceCollection.cs
- IdentifierCreationService.cs
- CircleHotSpot.cs
- webclient.cs
- Int32KeyFrameCollection.cs
- QilInvokeLateBound.cs
- SerializationInfoEnumerator.cs
- Bind.cs
- GregorianCalendar.cs
- IndicShape.cs
- DBSqlParser.cs
- Menu.cs
- DataGridViewRowHeaderCell.cs
- DocumentSequenceHighlightLayer.cs
- BufferBuilder.cs
- ExtractedStateEntry.cs
- SchemaCollectionPreprocessor.cs
- EmptyReadOnlyDictionaryInternal.cs
- NameNode.cs
- DelegatedStream.cs
- TextEditorTyping.cs
- ProcessStartInfo.cs
- KeyEventArgs.cs
- Hash.cs
- XmlQualifiedName.cs
- DataGridViewButtonCell.cs
- WebRequest.cs
- ImageButton.cs
- ClientBase.cs
- MetabaseServerConfig.cs
- XmlnsCache.cs
- Inflater.cs
- AsyncContentLoadedEventArgs.cs