Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlLinkButton.cs / 2 / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ScopedMessagePartSpecification.cs
- BindingSource.cs
- ExtensionWindowHeader.cs
- RolePrincipal.cs
- UIntPtr.cs
- PropertyEmitter.cs
- CodeTypeDelegate.cs
- AmbientLight.cs
- ConnectionPointCookie.cs
- SiteMapNodeCollection.cs
- _NestedMultipleAsyncResult.cs
- ProxyWebPartConnectionCollection.cs
- DataReaderContainer.cs
- MaskedTextBox.cs
- WindowsListViewItemCheckBox.cs
- MetadataArtifactLoaderResource.cs
- ActiveXMessageFormatter.cs
- PreProcessor.cs
- PersonalizationAdministration.cs
- dataprotectionpermissionattribute.cs
- SqlResolver.cs
- PrintPreviewDialog.cs
- QueryContinueDragEvent.cs
- altserialization.cs
- SyndicationSerializer.cs
- NativeMethods.cs
- UserControlCodeDomTreeGenerator.cs
- TextPointerBase.cs
- BufferedGraphicsContext.cs
- LogicalTreeHelper.cs
- ReflectionHelper.cs
- CodeGen.cs
- ToolboxBitmapAttribute.cs
- basevalidator.cs
- MD5.cs
- OleDbTransaction.cs
- DataContract.cs
- DataGridViewAutoSizeModeEventArgs.cs
- FileDialog.cs
- WizardStepCollectionEditor.cs
- CategoryGridEntry.cs
- ContentPathSegment.cs
- Native.cs
- BamlRecords.cs
- ToolStripContainer.cs
- OdbcConnectionOpen.cs
- FormatterConverter.cs
- PropertyFilter.cs
- BasePattern.cs
- XmlDownloadManager.cs
- Delay.cs
- InvokeWebService.cs
- SafeNativeMethods.cs
- EventLogWatcher.cs
- ReadOnlyHierarchicalDataSourceView.cs
- GZipStream.cs
- WebBrowserPermission.cs
- AutoFocusStyle.xaml.cs
- Schema.cs
- PageBreakRecord.cs
- SystemWebCachingSectionGroup.cs
- QueryValue.cs
- ReverseInheritProperty.cs
- CompilerState.cs
- ThousandthOfEmRealDoubles.cs
- DBConcurrencyException.cs
- Int16.cs
- EditingCommands.cs
- BinaryNode.cs
- HtmlLink.cs
- CompiledRegexRunnerFactory.cs
- PageAsyncTask.cs
- StreamWriter.cs
- PauseStoryboard.cs
- GiveFeedbackEvent.cs
- SQLDateTimeStorage.cs
- FrameworkContentElementAutomationPeer.cs
- HtmlTextViewAdapter.cs
- Bitmap.cs
- IgnoreDeviceFilterElementCollection.cs
- DetectRunnableInstancesTask.cs
- LicenseException.cs
- SafeHandle.cs
- Misc.cs
- HttpRequest.cs
- HttpProtocolImporter.cs
- ScrollableControl.cs
- ExceptionHelpers.cs
- CodePropertyReferenceExpression.cs
- PerformanceCounter.cs
- RSAPKCS1KeyExchangeDeformatter.cs
- DisplayClaim.cs
- TypeBuilder.cs
- CreateBookmarkScope.cs
- EntityDescriptor.cs
- DesignerOptionService.cs
- PermissionListSet.cs
- SelectingProviderEventArgs.cs
- WebPartTransformerCollection.cs
- ListViewDeletedEventArgs.cs