Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / 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.
//------------------------------------------------------------------------------
//
// 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
- serverconfig.cs
- GacUtil.cs
- DictionaryGlobals.cs
- MatrixTransform.cs
- DataServiceExpressionVisitor.cs
- MouseGestureValueSerializer.cs
- XhtmlBasicLinkAdapter.cs
- DefaultHttpHandler.cs
- SynchronizedDisposablePool.cs
- BitmapEffectDrawing.cs
- DescendantQuery.cs
- Tokenizer.cs
- DataGridViewTextBoxCell.cs
- UnsafeNativeMethodsCLR.cs
- HtmlButton.cs
- DataTableNewRowEvent.cs
- HelpProvider.cs
- FunctionCommandText.cs
- MulticastDelegate.cs
- IsolatedStorageFile.cs
- ConfigurationErrorsException.cs
- ContainerParagraph.cs
- EventEntry.cs
- SafeFileMappingHandle.cs
- VectorCollectionValueSerializer.cs
- HotSpot.cs
- StyleXamlParser.cs
- ToolStripDropDown.cs
- WindowsFormsHostAutomationPeer.cs
- SoapEnumAttribute.cs
- LinkedResource.cs
- Selection.cs
- XmlCharCheckingReader.cs
- CodeLinePragma.cs
- ComboBoxAutomationPeer.cs
- CodeNamespace.cs
- BufferedStream2.cs
- CurrencyManager.cs
- CompilerLocalReference.cs
- CategoryNameCollection.cs
- KeyConverter.cs
- ImmutableObjectAttribute.cs
- SecurityChannelFaultConverter.cs
- DBDataPermission.cs
- SqlCacheDependencyDatabaseCollection.cs
- XsltSettings.cs
- DataMember.cs
- ConstraintCollection.cs
- MissingManifestResourceException.cs
- CodeArrayCreateExpression.cs
- Code.cs
- BinaryObjectInfo.cs
- XmlSchemaInclude.cs
- ObjRef.cs
- XmlnsDictionary.cs
- IgnoreFileBuildProvider.cs
- OdbcConnectionPoolProviderInfo.cs
- ADMembershipUser.cs
- SerializationException.cs
- VisualTreeHelper.cs
- Wildcard.cs
- SymLanguageType.cs
- ProcessRequestArgs.cs
- NetworkInformationException.cs
- ViewManager.cs
- SoapAttributeOverrides.cs
- PerformanceCounterPermission.cs
- DbModificationCommandTree.cs
- PropertyGeneratedEventArgs.cs
- SafeCoTaskMem.cs
- DbXmlEnabledProviderManifest.cs
- IdentityModelStringsVersion1.cs
- SchemaImporterExtensionElement.cs
- UxThemeWrapper.cs
- ArcSegment.cs
- ValueConversionAttribute.cs
- NavigationCommands.cs
- TextOptions.cs
- TableLayout.cs
- HttpRequest.cs
- COSERVERINFO.cs
- StateMachineDesignerPaint.cs
- indexingfiltermarshaler.cs
- SystemWebSectionGroup.cs
- CryptoConfig.cs
- DateTimeSerializationSection.cs
- SqlDataSourceEnumerator.cs
- InteropDesigner.xaml.cs
- ClientUriBehavior.cs
- TraceEventCache.cs
- NgenServicingAttributes.cs
- shaper.cs
- Rfc2898DeriveBytes.cs
- ExpressionBuilder.cs
- CodeDomLocalizationProvider.cs
- WebRequestModuleElement.cs
- ItemsPresenter.cs
- _ConnectStream.cs
- QuaternionAnimationUsingKeyFrames.cs
- RectAnimationClockResource.cs