Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlPagerLinkButton.cs / 1 / DataControlPagerLinkButton.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 DataControlPagerLinkButton : DataControlLinkButton { internal DataControlPagerLinkButton(IPostBackContainer container) : base(container) { } public override bool CausesValidation { get { return false; } set { throw new NotSupportedException(SR.GetString(SR.CannotSetValidationOnPagerButtons)); } } ////// 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 override void SetForeColor() { if (ControlStyle.IsSet(System.Web.UI.WebControls.Style.PROP_FORECOLOR) == false) { Color hyperLinkForeColor; Control control = this; for (int i = 0; i < 6; i++) { control = control.Parent; // pager buttons are usually inside a table that's inside the pager row Debug.Assert(((i == 0) && (control is TableCell)) || ((i == 1) && (control is TableRow)) || ((i == 2) && (control is Table)) || ((i == 3) && (control is TableCell)) || ((i == 4) && (control is TableRow)) || ((i == 5) && (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
- DurableRuntimeValidator.cs
- DecoderReplacementFallback.cs
- EdmConstants.cs
- SimplePropertyEntry.cs
- CurrentChangingEventManager.cs
- FormViewInsertedEventArgs.cs
- Int32AnimationUsingKeyFrames.cs
- XmlSchemaSimpleContentExtension.cs
- HttpResponseHeader.cs
- CommandDevice.cs
- AttributedMetaModel.cs
- LinearGradientBrush.cs
- UnsafeNetInfoNativeMethods.cs
- VisualStyleRenderer.cs
- CaseInsensitiveHashCodeProvider.cs
- Propagator.cs
- KeysConverter.cs
- CompoundFileReference.cs
- XmlCharCheckingReader.cs
- Int64AnimationUsingKeyFrames.cs
- CodeTypeConstructor.cs
- StylusPointProperties.cs
- WindowsPrincipal.cs
- RegexReplacement.cs
- DynamicValueConverter.cs
- ListViewInsertEventArgs.cs
- XmlSchemaExporter.cs
- ConnectorDragDropGlyph.cs
- BitmapSource.cs
- ISSmlParser.cs
- SqlRowUpdatedEvent.cs
- FilteredSchemaElementLookUpTable.cs
- FamilyTypeface.cs
- MenuItemStyle.cs
- DtrList.cs
- FileSystemWatcher.cs
- SQLInt16.cs
- XmlNullResolver.cs
- Int32Rect.cs
- relpropertyhelper.cs
- Type.cs
- DynamicValueConverter.cs
- WaitForChangedResult.cs
- Version.cs
- FormConverter.cs
- DefaultTextStoreTextComposition.cs
- ColorConverter.cs
- ReadOnlyHierarchicalDataSourceView.cs
- XmlSigningNodeWriter.cs
- StateInitialization.cs
- TcpAppDomainProtocolHandler.cs
- PrivilegedConfigurationManager.cs
- LinkLabelLinkClickedEvent.cs
- SerializationException.cs
- DataListItemCollection.cs
- LookupTables.cs
- MarkedHighlightComponent.cs
- RadioButtonList.cs
- MimeWriter.cs
- StatusBarPanel.cs
- FixedFindEngine.cs
- SoapExtension.cs
- XamlSerializer.cs
- MD5CryptoServiceProvider.cs
- SecurityRuntime.cs
- MenuAutomationPeer.cs
- MD5.cs
- SerialPinChanges.cs
- HtmlHistory.cs
- PeerName.cs
- Control.cs
- HtmlSelect.cs
- DataGridRow.cs
- ThicknessConverter.cs
- RowUpdatingEventArgs.cs
- HyperLink.cs
- ToolboxItemFilterAttribute.cs
- WebPartConnection.cs
- RpcAsyncResult.cs
- InternalDuplexChannelListener.cs
- CompilerState.cs
- XmlSerializerNamespaces.cs
- CustomUserNameSecurityTokenAuthenticator.cs
- ToolStripItemClickedEventArgs.cs
- DecimalStorage.cs
- XPathMultyIterator.cs
- DoubleAnimationUsingKeyFrames.cs
- SmtpMail.cs
- SmtpLoginAuthenticationModule.cs
- ReflectionUtil.cs
- Int16.cs
- ObjectDataSourceSelectingEventArgs.cs
- AssemblyResourceLoader.cs
- FileDialogPermission.cs
- HtmlHead.cs
- DrawingAttributeSerializer.cs
- WindowsRichEditRange.cs
- UnsafeNativeMethodsPenimc.cs
- Part.cs
- ValidationErrorEventArgs.cs