Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- ProfilePropertyMetadata.cs
- ToolZone.cs
- DataSourceXmlClassAttribute.cs
- TriggerActionCollection.cs
- ResourceProperty.cs
- Utils.cs
- Type.cs
- WebPartDisplayModeCollection.cs
- control.ime.cs
- BreakRecordTable.cs
- TextServicesHost.cs
- TabItem.cs
- DrawingGroup.cs
- PropertyChangedEventArgs.cs
- Context.cs
- ConnectivityStatus.cs
- ContentHostHelper.cs
- LinkTarget.cs
- BrushMappingModeValidation.cs
- BooleanConverter.cs
- ConfigsHelper.cs
- ActivityBuilderHelper.cs
- WorkflowTransactionService.cs
- MimeMultiPart.cs
- AmbientEnvironment.cs
- MimeXmlImporter.cs
- InvalidWorkflowException.cs
- EdmProviderManifest.cs
- RegistrySecurity.cs
- SelectionListComponentEditor.cs
- DataGridDesigner.cs
- DeclarativeExpressionConditionDeclaration.cs
- Block.cs
- UnauthorizedAccessException.cs
- DynamicHyperLink.cs
- PropertyRef.cs
- CodeCatchClauseCollection.cs
- GregorianCalendar.cs
- WaitForChangedResult.cs
- Base64Stream.cs
- RouteTable.cs
- XmlBinaryWriter.cs
- RepeaterItemEventArgs.cs
- XhtmlBasicValidatorAdapter.cs
- UnmanagedMarshal.cs
- CodeCommentStatement.cs
- StateBag.cs
- PeerHopCountAttribute.cs
- MobileComponentEditorPage.cs
- CatalogZoneBase.cs
- ThreadNeutralSemaphore.cs
- EntityTemplateUserControl.cs
- ScrollProperties.cs
- WebBrowserSiteBase.cs
- C14NUtil.cs
- SynchronizedInputAdaptor.cs
- HwndHost.cs
- PageTheme.cs
- PassportAuthenticationEventArgs.cs
- MorphHelpers.cs
- ClientRuntimeConfig.cs
- __FastResourceComparer.cs
- ReflectionPermission.cs
- FileDataSourceCache.cs
- SaveFileDialog.cs
- ConversionContext.cs
- SqlFlattener.cs
- DataViewManager.cs
- PerformanceCounterCategory.cs
- CodeIdentifier.cs
- SqlConnectionManager.cs
- RequestResizeEvent.cs
- XmlSchemaSimpleContentExtension.cs
- GAC.cs
- FixedSOMTable.cs
- BitStack.cs
- SecurityCriticalDataForSet.cs
- SizeFConverter.cs
- PartialTrustHelpers.cs
- PropertyFilterAttribute.cs
- XmlnsCache.cs
- ApplicationProxyInternal.cs
- SyntaxCheck.cs
- Contracts.cs
- PaperSource.cs
- EdmSchemaError.cs
- ADMembershipProvider.cs
- LoginUtil.cs
- HierarchicalDataTemplate.cs
- _NegoState.cs
- SqlDependency.cs
- MenuItem.cs
- QilList.cs
- DragDrop.cs
- Misc.cs
- SqlNodeAnnotation.cs
- CodeMemberEvent.cs
- ClientUIRequest.cs
- DPCustomTypeDescriptor.cs
- LayoutEvent.cs