Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlLinkButton.cs / 1305376 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DataGridCellsPanel.cs
- objectquery_tresulttype.cs
- TraceEventCache.cs
- TimersDescriptionAttribute.cs
- MarkerProperties.cs
- ConditionValidator.cs
- WebPartActionVerb.cs
- ZipIOExtraFieldElement.cs
- WindowPatternIdentifiers.cs
- SqlMethodCallConverter.cs
- ListDictionary.cs
- OSEnvironmentHelper.cs
- RadioButtonAutomationPeer.cs
- EdmMember.cs
- SocketException.cs
- XPathPatternParser.cs
- MergeFilterQuery.cs
- SocketPermission.cs
- PageAdapter.cs
- FileIOPermission.cs
- SqlXml.cs
- MonthChangedEventArgs.cs
- VectorCollection.cs
- SpellerError.cs
- GridViewSortEventArgs.cs
- WebPartDescription.cs
- ScalarConstant.cs
- ConfigurationStrings.cs
- XsltConvert.cs
- PolyBezierSegmentFigureLogic.cs
- XmlWriterSettings.cs
- Misc.cs
- ConnectivityStatus.cs
- DictationGrammar.cs
- ToolboxDataAttribute.cs
- PageAdapter.cs
- WorkflowMessageEventHandler.cs
- TemplateBamlTreeBuilder.cs
- CommandEventArgs.cs
- ConfigurationElementCollection.cs
- PageAsyncTask.cs
- filewebresponse.cs
- EnumerableRowCollectionExtensions.cs
- DBParameter.cs
- BidPrivateBase.cs
- DataGridViewRowConverter.cs
- DesignSurfaceServiceContainer.cs
- ListBox.cs
- EventListener.cs
- TransformedBitmap.cs
- BufferModesCollection.cs
- TransformerInfo.cs
- OpenCollectionAsyncResult.cs
- EntryPointNotFoundException.cs
- ToolBarTray.cs
- DocumentOrderComparer.cs
- RelatedPropertyManager.cs
- HtmlControl.cs
- SqlVersion.cs
- Propagator.Evaluator.cs
- XmlRawWriterWrapper.cs
- EventLogPermissionEntryCollection.cs
- Assert.cs
- NavigationProperty.cs
- UnknownBitmapEncoder.cs
- NotifyParentPropertyAttribute.cs
- CFStream.cs
- PlainXmlWriter.cs
- GAC.cs
- HopperCache.cs
- Clause.cs
- NativeMethods.cs
- Accessible.cs
- ObservableDictionary.cs
- WebSysDisplayNameAttribute.cs
- TagPrefixCollection.cs
- CookieProtection.cs
- StorageInfo.cs
- XmlSchemaAny.cs
- SelectiveScrollingGrid.cs
- EventLogger.cs
- TabControlToolboxItem.cs
- ButtonBaseAutomationPeer.cs
- Transactions.cs
- DrawingState.cs
- _ShellExpression.cs
- FlowLayout.cs
- SelectingProviderEventArgs.cs
- ResXBuildProvider.cs
- ScrollBar.cs
- URLMembershipCondition.cs
- HttpWebRequestElement.cs
- AssemblyInfo.cs
- Odbc32.cs
- HttpAsyncResult.cs
- DocumentApplicationState.cs
- CodeTypeReference.cs
- TreeViewCancelEvent.cs
- PasswordBox.cs
- SqlCacheDependencyDatabaseCollection.cs