Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ResourceDictionary.cs
- PermissionSetTriple.cs
- MeasurementDCInfo.cs
- RNGCryptoServiceProvider.cs
- ArrayList.cs
- GiveFeedbackEvent.cs
- BamlLocalizer.cs
- WebDisplayNameAttribute.cs
- AddIn.cs
- ToolStripAdornerWindowService.cs
- CopyAttributesAction.cs
- BaseDataBoundControl.cs
- ComponentChangingEvent.cs
- VirtualizingStackPanel.cs
- CallTemplateAction.cs
- _ShellExpression.cs
- SetterBase.cs
- RequestCacheEntry.cs
- UntrustedRecipientException.cs
- XmlEntity.cs
- EmptyStringExpandableObjectConverter.cs
- ChannelPoolSettings.cs
- WSMessageEncoding.cs
- PeerHelpers.cs
- TextSearch.cs
- WebCategoryAttribute.cs
- DataControlPagerLinkButton.cs
- WebPartMinimizeVerb.cs
- DeferredElementTreeState.cs
- StyleCollection.cs
- SupportsEventValidationAttribute.cs
- CallId.cs
- dbenumerator.cs
- ProgressBarRenderer.cs
- SerializationInfoEnumerator.cs
- ColumnResizeUndoUnit.cs
- CoTaskMemHandle.cs
- Menu.cs
- OutArgument.cs
- UserInitiatedNavigationPermission.cs
- ReadOnlyDataSourceView.cs
- SqlHelper.cs
- DesignerActionGlyph.cs
- XmlQueryStaticData.cs
- Math.cs
- DataListItemCollection.cs
- TracedNativeMethods.cs
- WebPartZoneBase.cs
- SystemWebSectionGroup.cs
- ToolbarAUtomationPeer.cs
- AppModelKnownContentFactory.cs
- Lease.cs
- IgnoreDeviceFilterElementCollection.cs
- SafeArrayRankMismatchException.cs
- ToolStripItemCollection.cs
- BamlResourceContent.cs
- DataKeyCollection.cs
- SafeEventHandle.cs
- DBCSCodePageEncoding.cs
- Grammar.cs
- CustomErrorCollection.cs
- SamlEvidence.cs
- ClientType.cs
- TypeUsageBuilder.cs
- XmlUTF8TextWriter.cs
- EventEntry.cs
- FindResponse.cs
- DecimalKeyFrameCollection.cs
- FixedSOMTableRow.cs
- ListBoxAutomationPeer.cs
- StatusBar.cs
- CodeParameterDeclarationExpressionCollection.cs
- DBConnection.cs
- ZipFileInfo.cs
- XPathChildIterator.cs
- IteratorFilter.cs
- XmlBinaryReaderSession.cs
- RuleSetReference.cs
- odbcmetadatafactory.cs
- ListViewCommandEventArgs.cs
- DataGridHeaderBorder.cs
- Quaternion.cs
- UnsafeNativeMethods.cs
- EpmSyndicationContentSerializer.cs
- FixedTextPointer.cs
- StateMachine.cs
- HtmlElementEventArgs.cs
- RangeValueProviderWrapper.cs
- ModifierKeysConverter.cs
- Monitor.cs
- XmlParserContext.cs
- VsPropertyGrid.cs
- CapabilitiesAssignment.cs
- SmiEventSink_Default.cs
- ClickablePoint.cs
- CodeAttributeDeclarationCollection.cs
- EditBehavior.cs
- Publisher.cs
- VariantWrapper.cs
- RelativeSource.cs