Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / Adapters / HideDisabledControlAdapter.cs / 1 / HideDisabledControlAdapter.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.Adapters { using System; using System.Security.Permissions; using System.Web; using System.Web.UI; using System.Web.UI.Adapters; // Used for controls which use their default rendering, but are hidden when disabled. [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class HideDisabledControlAdapter : WebControlAdapter { // Returns without doing anything if the control is disabled, otherwise, uses the default rendering. protected internal override void Render(HtmlTextWriter writer) { if (Control.Enabled == false) { return; } Control.Render(writer); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.Adapters { using System; using System.Security.Permissions; using System.Web; using System.Web.UI; using System.Web.UI.Adapters; // Used for controls which use their default rendering, but are hidden when disabled. [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class HideDisabledControlAdapter : WebControlAdapter { // Returns without doing anything if the control is disabled, otherwise, uses the default rendering. protected internal override void Render(HtmlTextWriter writer) { if (Control.Enabled == false) { return; } Control.Render(writer); } } } // 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
- TreeChangeInfo.cs
- UnmanagedMemoryStream.cs
- TranslateTransform3D.cs
- ServicesSection.cs
- InstalledFontCollection.cs
- EntityCommandDefinition.cs
- LZCodec.cs
- OleDbPermission.cs
- Misc.cs
- QueuedDeliveryRequirementsMode.cs
- BitmapFrameDecode.cs
- GenericUriParser.cs
- GiveFeedbackEvent.cs
- Vector3DAnimation.cs
- DocumentOrderQuery.cs
- TextServicesDisplayAttribute.cs
- LayoutUtils.cs
- PropertyKey.cs
- GlobalDataBindingHandler.cs
- XmlReturnReader.cs
- ImageList.cs
- ModelFunctionTypeElement.cs
- ProcessProtocolHandler.cs
- NameValueConfigurationCollection.cs
- RSAPKCS1SignatureDeformatter.cs
- Triplet.cs
- AttachedPropertyBrowsableForTypeAttribute.cs
- Vector3DAnimation.cs
- UserPersonalizationStateInfo.cs
- InvalidDataException.cs
- IssuedSecurityTokenProvider.cs
- PrivateFontCollection.cs
- SchemaImporterExtensionElementCollection.cs
- FixedSOMPage.cs
- Cursor.cs
- CollectionViewGroupRoot.cs
- OleDbDataReader.cs
- ImageListStreamer.cs
- ApplicationActivator.cs
- CompilerInfo.cs
- BufferedWebEventProvider.cs
- PeerChannelListener.cs
- DataFormats.cs
- EntityEntry.cs
- HttpHandlersSection.cs
- BufferedWebEventProvider.cs
- FloaterBaseParagraph.cs
- List.cs
- MetadataItem_Static.cs
- SystemFonts.cs
- Style.cs
- mactripleDES.cs
- PageTheme.cs
- SerTrace.cs
- RuntimeHelpers.cs
- PenContext.cs
- GPPOINTF.cs
- EventHandlersDesigner.cs
- RawKeyboardInputReport.cs
- ConfigurationValidatorAttribute.cs
- PointAnimationUsingPath.cs
- CharAnimationBase.cs
- TransformedBitmap.cs
- DistinctQueryOperator.cs
- PersonalizablePropertyEntry.cs
- XmlSchemaInclude.cs
- DefaultPrintController.cs
- RtType.cs
- AQNBuilder.cs
- StringPropertyBuilder.cs
- OutputWindow.cs
- Serializer.cs
- DesignerTextWriter.cs
- NoPersistProperty.cs
- MaskedTextBoxTextEditor.cs
- LinkedResource.cs
- TextRangeEditTables.cs
- HeaderUtility.cs
- ByeMessageApril2005.cs
- CompilerError.cs
- SchemaObjectWriter.cs
- HtmlAnchor.cs
- Rect3D.cs
- XamlTreeBuilder.cs
- ProfileSettings.cs
- SqlDataSourceTableQuery.cs
- AudioStateChangedEventArgs.cs
- ComponentChangedEvent.cs
- QilParameter.cs
- SqlUnionizer.cs
- EnumBuilder.cs
- CollectionViewProxy.cs
- DataRowView.cs
- NamespaceList.cs
- JsonFormatGeneratorStatics.cs
- SchemaAttDef.cs
- TextTrailingWordEllipsis.cs
- AutomationEventArgs.cs
- BidirectionalDictionary.cs
- XmlUrlResolver.cs