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 / WebParts / ZoneLinkButton.cs / 1 / ZoneLinkButton.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.ComponentModel; using System.Web.UI.WebControls; ////// [SupportsEventValidation] internal sealed class ZoneLinkButton : LinkButton { private WebZone _owner; private string _eventArgument; private string _imageUrl; public ZoneLinkButton(WebZone owner, string eventArgument) { if (owner == null) { throw new ArgumentNullException("owner"); } _owner = owner; _eventArgument = eventArgument; } public string ImageUrl { get { return (_imageUrl != null) ? _imageUrl : String.Empty; } set { _imageUrl = value; } } protected override PostBackOptions GetPostBackOptions() { // _owner.Page may be null in the designer if (!String.IsNullOrEmpty(_eventArgument) && _owner.Page != null) { PostBackOptions options = new PostBackOptions(_owner, _eventArgument); options.RequiresJavaScriptProtocol = true; return options; } return base.GetPostBackOptions(); } protected internal override void RenderContents(HtmlTextWriter writer) { // Copied from HyperLink.RenderContents() and modified slightly string imageUrl = ImageUrl; if (!String.IsNullOrEmpty(imageUrl)) { Image image = new Image(); // NOTE: The Url resolution happens right here, because the image is not parented // and will not be able to resolve when it tries to do so. image.ImageUrl = ResolveClientUrl(imageUrl); string toolTip = ToolTip; if (!String.IsNullOrEmpty(toolTip)) { image.ToolTip = toolTip; } string text = Text; if (!String.IsNullOrEmpty(text)) { image.AlternateText = text; } image.Page = Page; image.RenderControl(writer); } else { base.RenderContents(writer); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.ComponentModel; using System.Web.UI.WebControls; ////// [SupportsEventValidation] internal sealed class ZoneLinkButton : LinkButton { private WebZone _owner; private string _eventArgument; private string _imageUrl; public ZoneLinkButton(WebZone owner, string eventArgument) { if (owner == null) { throw new ArgumentNullException("owner"); } _owner = owner; _eventArgument = eventArgument; } public string ImageUrl { get { return (_imageUrl != null) ? _imageUrl : String.Empty; } set { _imageUrl = value; } } protected override PostBackOptions GetPostBackOptions() { // _owner.Page may be null in the designer if (!String.IsNullOrEmpty(_eventArgument) && _owner.Page != null) { PostBackOptions options = new PostBackOptions(_owner, _eventArgument); options.RequiresJavaScriptProtocol = true; return options; } return base.GetPostBackOptions(); } protected internal override void RenderContents(HtmlTextWriter writer) { // Copied from HyperLink.RenderContents() and modified slightly string imageUrl = ImageUrl; if (!String.IsNullOrEmpty(imageUrl)) { Image image = new Image(); // NOTE: The Url resolution happens right here, because the image is not parented // and will not be able to resolve when it tries to do so. image.ImageUrl = ResolveClientUrl(imageUrl); string toolTip = ToolTip; if (!String.IsNullOrEmpty(toolTip)) { image.ToolTip = toolTip; } string text = Text; if (!String.IsNullOrEmpty(text)) { image.AlternateText = text; } image.Page = Page; image.RenderControl(writer); } else { base.RenderContents(writer); } } } } // 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
- ProcessThread.cs
- CheckBoxList.cs
- SqlFactory.cs
- MethodExpression.cs
- ValidationEventArgs.cs
- remotingproxy.cs
- EdmValidator.cs
- SchemaTableOptionalColumn.cs
- UnsafeNativeMethods.cs
- TemplateApplicationHelper.cs
- URIFormatException.cs
- HijriCalendar.cs
- XmlElementElementCollection.cs
- ReferenceEqualityComparer.cs
- StatusBar.cs
- TransactionCache.cs
- TypeExtension.cs
- DependentTransaction.cs
- JournalEntryStack.cs
- DesignerTransactionCloseEvent.cs
- StrongNameUtility.cs
- ObjectRef.cs
- SizeFConverter.cs
- DataGridViewCellLinkedList.cs
- Floater.cs
- DocumentViewerAutomationPeer.cs
- CacheRequest.cs
- FilteredDataSetHelper.cs
- FacetDescriptionElement.cs
- dtdvalidator.cs
- HebrewNumber.cs
- Positioning.cs
- DocumentOrderComparer.cs
- AssemblyCollection.cs
- ZipIOExtraFieldZip64Element.cs
- Timer.cs
- AuthorizationSection.cs
- PreservationFileWriter.cs
- HostVisual.cs
- ValidationErrorCollection.cs
- TraceSource.cs
- ClickablePoint.cs
- FlowNode.cs
- DrawingContextWalker.cs
- CompositeDispatchFormatter.cs
- BitmapImage.cs
- ModelFunctionTypeElement.cs
- ApplicationActivator.cs
- ControlUtil.cs
- MetadataFile.cs
- ServerIdentity.cs
- _AutoWebProxyScriptEngine.cs
- BadImageFormatException.cs
- OleDbEnumerator.cs
- CreateUserWizardStep.cs
- Attributes.cs
- WindowsListViewGroup.cs
- _DisconnectOverlappedAsyncResult.cs
- InstallerTypeAttribute.cs
- FrameworkReadOnlyPropertyMetadata.cs
- SharedConnectionInfo.cs
- OdbcException.cs
- SqlCacheDependency.cs
- XmlQualifiedNameTest.cs
- ObjectDataSourceMethodEventArgs.cs
- CodeRemoveEventStatement.cs
- SqlProfileProvider.cs
- DictionaryItemsCollection.cs
- InvalidContentTypeException.cs
- XmlExtensionFunction.cs
- HttpListenerPrefixCollection.cs
- ProcessModelInfo.cs
- Utils.cs
- SplitterPanel.cs
- TransformerConfigurationWizardBase.cs
- StaticContext.cs
- PingOptions.cs
- ClientTargetSection.cs
- ListViewDeletedEventArgs.cs
- ResourceReferenceExpression.cs
- loginstatus.cs
- RecommendedAsConfigurableAttribute.cs
- XmlReaderDelegator.cs
- ScrollBar.cs
- RbTree.cs
- NavigationProperty.cs
- CodeDomSerializerException.cs
- MemoryPressure.cs
- DrawingCollection.cs
- DataViewSettingCollection.cs
- serverconfig.cs
- GPRECTF.cs
- NullRuntimeConfig.cs
- SessionStateItemCollection.cs
- ADMembershipUser.cs
- D3DImage.cs
- DesignTimeData.cs
- ISO2022Encoding.cs
- BreadCrumbTextConverter.cs
- MaskedTextProvider.cs