Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / AdRotatorDesigner.cs / 1 / AdRotatorDesigner.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.Design.WebControls { using System.ComponentModel; using System.Diagnostics; using System.Globalization; using System.Web.UI.WebControls; using Microsoft.Win32; using System; using System.IO; using System.Web.UI; using System.Reflection; ////// /// [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] [SupportsPreviewControl(true)] public class AdRotatorDesigner : DataBoundControlDesigner { ////// Provides design-time support for the ////// web control. /// /// /// public override string GetDesignTimeHtml() { AdRotator adRotator = (AdRotator)ViewControl; StringWriter sw = new StringWriter(CultureInfo.CurrentCulture); DesignTimeHtmlTextWriter tw = new DesignTimeHtmlTextWriter(sw); // we want to put some properties on the link, and some on the image, so we // create temporary objects for rendinger and distribute the properties. HyperLink bannerLink = new HyperLink(); bannerLink.ID = adRotator.ID; bannerLink.NavigateUrl = ""; bannerLink.Target = adRotator.Target; bannerLink.AccessKey = adRotator.AccessKey; bannerLink.Enabled = adRotator.Enabled; bannerLink.TabIndex = adRotator.TabIndex; bannerLink.Style.Value = adRotator.Style.Value; // VSWhidbey 325730 bannerLink.RenderBeginTag(tw); Image bannerImage = new Image(); // apply style copies most style-related properties bannerImage.ApplyStyle(adRotator.ControlStyle); bannerImage.ImageUrl = ""; bannerImage.AlternateText = adRotator.ID; bannerImage.ToolTip = adRotator.ToolTip; bannerImage.RenderControl(tw); bannerLink.RenderEndTag(tw); return sw.ToString(); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved./// Returns the design-time HTML of the ////// web control ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BinaryObjectInfo.cs
- DataServiceExpressionVisitor.cs
- XmlSchemaSimpleContent.cs
- DependencyObjectProvider.cs
- RootBuilder.cs
- ACE.cs
- ColorContext.cs
- ListManagerBindingsCollection.cs
- FakeModelItemImpl.cs
- EventSetter.cs
- HtmlInputFile.cs
- InputMethodStateTypeInfo.cs
- Point.cs
- SamlSecurityToken.cs
- EmbeddedMailObjectsCollection.cs
- BaseParser.cs
- Context.cs
- XmlILConstructAnalyzer.cs
- PathTooLongException.cs
- OrderByExpression.cs
- Models.cs
- AsymmetricKeyExchangeFormatter.cs
- SoapAttributeAttribute.cs
- WebRequestModuleElement.cs
- CodePageUtils.cs
- SqlTypeSystemProvider.cs
- TextRunCacheImp.cs
- MessageTransmitTraceRecord.cs
- ValidationSummary.cs
- ConfigurationConverterBase.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- DelayedRegex.cs
- CssStyleCollection.cs
- SessionPageStatePersister.cs
- DataSourceSerializationException.cs
- TextPenaltyModule.cs
- MessageFormatterConverter.cs
- StrongNameIdentityPermission.cs
- HttpValueCollection.cs
- ResolveMatchesApril2005.cs
- ProgressBarBrushConverter.cs
- IMembershipProvider.cs
- Base64Encoder.cs
- EntityDesignerBuildProvider.cs
- ImageField.cs
- HttpRequest.cs
- StoreAnnotationsMap.cs
- WorkflowDefinitionDispenser.cs
- Setter.cs
- COM2IVsPerPropertyBrowsingHandler.cs
- DatePickerAutomationPeer.cs
- MsmqIntegrationInputMessage.cs
- ServiceDescriptionContext.cs
- DesignerSerializerAttribute.cs
- DataGridViewCellStyleEditor.cs
- DoubleLink.cs
- PeerNameRegistration.cs
- XmlDocument.cs
- XmlSignatureProperties.cs
- TypeTypeConverter.cs
- _DisconnectOverlappedAsyncResult.cs
- BaseDataBoundControl.cs
- RadioButtonAutomationPeer.cs
- BaseAsyncResult.cs
- GeneratedView.cs
- InfoCardClaim.cs
- XmlSortKeyAccumulator.cs
- Signature.cs
- UpdateEventArgs.cs
- EntitySetDataBindingList.cs
- HtmlInputImage.cs
- SQLResource.cs
- ProfileGroupSettings.cs
- LineGeometry.cs
- BaseCodePageEncoding.cs
- FixedSOMPageElement.cs
- AdvancedBindingPropertyDescriptor.cs
- CompressionTransform.cs
- BypassElement.cs
- NetPipeSection.cs
- FormsIdentity.cs
- TypeViewSchema.cs
- PackWebRequest.cs
- RootBrowserWindowAutomationPeer.cs
- PostBackTrigger.cs
- XmlElementElementCollection.cs
- DataGridViewCellLinkedList.cs
- controlskin.cs
- TextBreakpoint.cs
- TypeConvertions.cs
- DataBindingHandlerAttribute.cs
- RelatedImageListAttribute.cs
- TableLayoutPanelCodeDomSerializer.cs
- PageBuildProvider.cs
- DocumentPageView.cs
- SubMenuStyle.cs
- EncoderParameter.cs
- KeyConverter.cs
- CreateCardRequest.cs
- webeventbuffer.cs