Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- Graphics.cs
- XmlAnyElementAttribute.cs
- WindowsSlider.cs
- XmlMapping.cs
- DocumentPageViewAutomationPeer.cs
- ColorMap.cs
- DelayedRegex.cs
- EventLogQuery.cs
- FixedSOMElement.cs
- XmlElement.cs
- DocumentXPathNavigator.cs
- SByte.cs
- BrowserDefinitionCollection.cs
- HttpResponseInternalWrapper.cs
- DateTimeOffsetAdapter.cs
- SymmetricAlgorithm.cs
- SafeLibraryHandle.cs
- LineGeometry.cs
- SystemThemeKey.cs
- CustomAttributeBuilder.cs
- RedirectionProxy.cs
- ContextDataSourceContextData.cs
- PolyBezierSegment.cs
- wgx_commands.cs
- Point3DCollectionConverter.cs
- DbReferenceCollection.cs
- XmlSchemaComplexContentExtension.cs
- SqlCommand.cs
- Style.cs
- SafeHandles.cs
- PopOutPanel.cs
- XamlClipboardData.cs
- WebRequestModuleElement.cs
- WebPartTransformerCollection.cs
- DeflateStreamAsyncResult.cs
- OdbcRowUpdatingEvent.cs
- HotSpot.cs
- ContextMenuStrip.cs
- ObjectFactoryCodeDomTreeGenerator.cs
- UrlMappingCollection.cs
- LexicalChunk.cs
- FixedSchema.cs
- AutomationIdentifier.cs
- DataGridRowClipboardEventArgs.cs
- Metafile.cs
- SchemaTypeEmitter.cs
- WebBrowserDocumentCompletedEventHandler.cs
- ImageMapEventArgs.cs
- XmlElementList.cs
- CompressedStack.cs
- MethodSignatureGenerator.cs
- DbProviderFactories.cs
- DataPagerCommandEventArgs.cs
- ValidatorUtils.cs
- IPipelineRuntime.cs
- ObjectListCommandsPage.cs
- ReadOnlyDictionary.cs
- XPathNavigator.cs
- RawAppCommandInputReport.cs
- ScrollBarAutomationPeer.cs
- ArgumentValidation.cs
- ListParaClient.cs
- LOSFormatter.cs
- EntityProviderServices.cs
- DataServiceClientException.cs
- SmiRecordBuffer.cs
- CodeStatementCollection.cs
- EmptyStringExpandableObjectConverter.cs
- MetadataExchangeBindings.cs
- OleDbConnection.cs
- NetSectionGroup.cs
- SchemaEntity.cs
- CompilationAssemblyInstallComponent.cs
- ActivityBuilderXamlWriter.cs
- SQLResource.cs
- BitmapMetadata.cs
- ScrollItemPattern.cs
- InputBinding.cs
- DrawListViewItemEventArgs.cs
- PageTheme.cs
- EffectiveValueEntry.cs
- CodeDelegateCreateExpression.cs
- TextDecorationCollectionConverter.cs
- RotationValidation.cs
- SendKeys.cs
- CustomTypeDescriptor.cs
- X509Extension.cs
- RoutingExtensionElement.cs
- SystemIPv4InterfaceProperties.cs
- MoveSizeWinEventHandler.cs
- SqlCharStream.cs
- Timer.cs
- SecurityCriticalDataForSet.cs
- FontCacheLogic.cs
- Script.cs
- Scripts.cs
- StringArrayConverter.cs
- InkPresenterAutomationPeer.cs
- SQLBytes.cs
- HostingEnvironmentSection.cs