Code:
/ DotNET / DotNET / 8.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
- SHA384.cs
- AxisAngleRotation3D.cs
- MouseBinding.cs
- ObjectListGeneralPage.cs
- CatalogPartCollection.cs
- XamlDesignerSerializationManager.cs
- Main.cs
- SqlException.cs
- SinglePhaseEnlistment.cs
- ListSortDescription.cs
- MutexSecurity.cs
- SQLStringStorage.cs
- ActivityExecutor.cs
- ListViewUpdateEventArgs.cs
- ADMembershipUser.cs
- ProgressBarRenderer.cs
- XmlSchemaSet.cs
- WebPartHeaderCloseVerb.cs
- ScaleTransform.cs
- OdbcCommandBuilder.cs
- SpecialNameAttribute.cs
- XmlNodeComparer.cs
- IndexedEnumerable.cs
- CommandHelpers.cs
- HyperLinkStyle.cs
- ConfigUtil.cs
- PrintPreviewControl.cs
- TextWriterTraceListener.cs
- Debugger.cs
- DetailsViewInsertEventArgs.cs
- DesignerVerbCollection.cs
- OutKeywords.cs
- PriorityRange.cs
- OperationParameterInfoCollection.cs
- DbBuffer.cs
- Activator.cs
- TextAdaptor.cs
- CodeEntryPointMethod.cs
- InvokeProviderWrapper.cs
- QuadraticBezierSegment.cs
- ExpandableObjectConverter.cs
- XmlNamespaceManager.cs
- StatusBarItem.cs
- ColorConvertedBitmap.cs
- ErasingStroke.cs
- ZipIOCentralDirectoryFileHeader.cs
- OrderedDictionaryStateHelper.cs
- ValueProviderWrapper.cs
- ConfigurationUtility.cs
- Opcode.cs
- DependencyPropertyKind.cs
- DataGridViewComboBoxCell.cs
- ChameleonKey.cs
- HtmlInputButton.cs
- CommandExpr.cs
- MemberHolder.cs
- StructuredTypeEmitter.cs
- UnsafeNativeMethods.cs
- ExtendedPropertyDescriptor.cs
- BasicHttpBinding.cs
- Int32RectConverter.cs
- ChtmlTextBoxAdapter.cs
- HebrewNumber.cs
- CodeObjectCreateExpression.cs
- EntityRecordInfo.cs
- HttpCacheVary.cs
- SerializationInfo.cs
- Enum.cs
- HttpWebResponse.cs
- ObjectFullSpanRewriter.cs
- ConfigXmlSignificantWhitespace.cs
- SqlDataSource.cs
- Brush.cs
- EntityContainerRelationshipSet.cs
- ParagraphVisual.cs
- ContractComponent.cs
- ObjectStateEntry.cs
- StoragePropertyMapping.cs
- TextRangeEditTables.cs
- DataControlFieldCollection.cs
- MenuAutomationPeer.cs
- CodeTypeReferenceExpression.cs
- BindStream.cs
- Pair.cs
- OleDbCommandBuilder.cs
- Int16KeyFrameCollection.cs
- DiagnosticsElement.cs
- IPHostEntry.cs
- AsyncOperation.cs
- OpenTypeLayoutCache.cs
- DetailsViewDesigner.cs
- Splitter.cs
- RelatedImageListAttribute.cs
- NamespaceEmitter.cs
- ExecutionContext.cs
- RoutedEventArgs.cs
- MatrixAnimationBase.cs
- _NtlmClient.cs
- IdentifierElement.cs
- ControlParameter.cs