Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlLinkButton.cs / 1 / DataControlLinkButton.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Drawing; using System.Web.Util; ////// Derived version of LinkButton used within a DataControl. /// [SupportsEventValidation] internal class DataControlLinkButton : LinkButton { IPostBackContainer _container; string _callbackArgument; bool _enableCallback; internal DataControlLinkButton(IPostBackContainer container) { _container = container; } public override bool CausesValidation { get { if (_container != null) { return false; } return base.CausesValidation; } set { if (_container != null) { throw new NotSupportedException(SR.GetString(SR.CannotSetValidationOnDataControlButtons)); } base.CausesValidation = value; } } internal void EnableCallback(string argument) { _enableCallback = true; _callbackArgument = argument; } protected override PostBackOptions GetPostBackOptions() { if (_container != null) { return _container.GetPostBackOptions(this); } return base.GetPostBackOptions(); } protected internal override void Render(HtmlTextWriter writer) { SetCallbackProperties(); SetForeColor(); base.Render(writer); } private void SetCallbackProperties() { if (_enableCallback) { ICallbackContainer _callbackContainer = _container as ICallbackContainer; if (_callbackContainer != null) { string callbackScript = _callbackContainer.GetCallbackScript(this, _callbackArgument); if (!String.IsNullOrEmpty(callbackScript)) { this.OnClientClick = callbackScript; } } } } ////// In HTML hyperlinks always use the browser's link color. /// For the DataControl, we want all LinkButtons to honor the ForeColor setting. /// This requires looking up into the control hierarchy to see if either the cell /// or the containing row or table define a ForeColor. /// protected virtual void SetForeColor() { if (ControlStyle.IsSet(System.Web.UI.WebControls.Style.PROP_FORECOLOR) == false) { Color hyperLinkForeColor; Control control = this; for (int i = 0; i < 3; i++) { control = control.Parent; Debug.Assert(((i == 0) && (control is TableCell)) || ((i == 1) && (control is TableRow)) || ((i == 2) && (control is Table))); hyperLinkForeColor = ((WebControl)control).ForeColor; if (hyperLinkForeColor != Color.Empty) { ForeColor = hyperLinkForeColor; break; } } } } } } // 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.Drawing; using System.Web.Util; ////// Derived version of LinkButton used within a DataControl. /// [SupportsEventValidation] internal class DataControlLinkButton : LinkButton { IPostBackContainer _container; string _callbackArgument; bool _enableCallback; internal DataControlLinkButton(IPostBackContainer container) { _container = container; } public override bool CausesValidation { get { if (_container != null) { return false; } return base.CausesValidation; } set { if (_container != null) { throw new NotSupportedException(SR.GetString(SR.CannotSetValidationOnDataControlButtons)); } base.CausesValidation = value; } } internal void EnableCallback(string argument) { _enableCallback = true; _callbackArgument = argument; } protected override PostBackOptions GetPostBackOptions() { if (_container != null) { return _container.GetPostBackOptions(this); } return base.GetPostBackOptions(); } protected internal override void Render(HtmlTextWriter writer) { SetCallbackProperties(); SetForeColor(); base.Render(writer); } private void SetCallbackProperties() { if (_enableCallback) { ICallbackContainer _callbackContainer = _container as ICallbackContainer; if (_callbackContainer != null) { string callbackScript = _callbackContainer.GetCallbackScript(this, _callbackArgument); if (!String.IsNullOrEmpty(callbackScript)) { this.OnClientClick = callbackScript; } } } } ////// In HTML hyperlinks always use the browser's link color. /// For the DataControl, we want all LinkButtons to honor the ForeColor setting. /// This requires looking up into the control hierarchy to see if either the cell /// or the containing row or table define a ForeColor. /// protected virtual void SetForeColor() { if (ControlStyle.IsSet(System.Web.UI.WebControls.Style.PROP_FORECOLOR) == false) { Color hyperLinkForeColor; Control control = this; for (int i = 0; i < 3; i++) { control = control.Parent; Debug.Assert(((i == 0) && (control is TableCell)) || ((i == 1) && (control is TableRow)) || ((i == 2) && (control is Table))); hyperLinkForeColor = ((WebControl)control).ForeColor; if (hyperLinkForeColor != Color.Empty) { ForeColor = hyperLinkForeColor; break; } } } } } } // 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
- IdnMapping.cs
- SafeFileMappingHandle.cs
- MaterialGroup.cs
- COM2Enum.cs
- FieldNameLookup.cs
- TimeSpanSecondsConverter.cs
- HTMLTagNameToTypeMapper.cs
- MouseGesture.cs
- FrameworkTextComposition.cs
- ActivatedMessageQueue.cs
- PersistenceParticipant.cs
- ConditionedDesigner.cs
- DataGridViewRowHeaderCell.cs
- StandardToolWindows.cs
- Light.cs
- SQLInt16Storage.cs
- ControlCachePolicy.cs
- XmlSchemaSimpleContentRestriction.cs
- HorizontalAlignConverter.cs
- PersonalizationStateInfo.cs
- SignatureToken.cs
- IUnknownConstantAttribute.cs
- securestring.cs
- GeneralTransform3DGroup.cs
- RuleInfoComparer.cs
- EncodingStreamWrapper.cs
- StoragePropertyMapping.cs
- Matrix3D.cs
- Codec.cs
- MaskedTextBox.cs
- DataGridViewTopLeftHeaderCell.cs
- ServiceNotStartedException.cs
- ScopelessEnumAttribute.cs
- ServiceDeploymentInfo.cs
- ExceptionValidationRule.cs
- DetailsViewUpdateEventArgs.cs
- FixedPageStructure.cs
- RegisteredArrayDeclaration.cs
- FunctionCommandText.cs
- Pair.cs
- CompositeFontParser.cs
- _LocalDataStore.cs
- TemplateParser.cs
- CommandDesigner.cs
- IPAddress.cs
- NativeMethods.cs
- ConfigurationSectionGroupCollection.cs
- OleDbEnumerator.cs
- ListViewItemEventArgs.cs
- Panel.cs
- ExpressionReplacer.cs
- XmlValidatingReaderImpl.cs
- SafeRsaProviderHandle.cs
- ManagedFilter.cs
- TablePattern.cs
- WebPartCancelEventArgs.cs
- UserControl.cs
- SettingsProperty.cs
- _NtlmClient.cs
- StateRuntime.cs
- MasterPageCodeDomTreeGenerator.cs
- AsynchronousChannel.cs
- SecurityTokenAuthenticator.cs
- RSAPKCS1SignatureDeformatter.cs
- RelatedPropertyManager.cs
- ElementProxy.cs
- Keyboard.cs
- XpsFont.cs
- WSFederationHttpSecurity.cs
- BufferAllocator.cs
- VisualBrush.cs
- RelatedPropertyManager.cs
- NavigationPropertyEmitter.cs
- TextEmbeddedObject.cs
- SmiGettersStream.cs
- HideDisabledControlAdapter.cs
- ListBase.cs
- DesignerListAdapter.cs
- EventHandlerList.cs
- Tokenizer.cs
- SchemaElementLookUpTable.cs
- FileRecordSequence.cs
- NameSpaceExtractor.cs
- SQLGuid.cs
- ClientSideProviderDescription.cs
- BlockingCollection.cs
- MsmqAppDomainProtocolHandler.cs
- BitmapDownload.cs
- MsmqIntegrationValidationBehavior.cs
- SetState.cs
- PageOrientation.cs
- DataGridTable.cs
- ObjectQuery.cs
- SafeNativeMethods.cs
- FieldToken.cs
- OdbcConnection.cs
- Utils.cs
- CryptoKeySecurity.cs
- AssemblyBuilder.cs
- SystemIPInterfaceStatistics.cs