AdRotatorDesigner.cs source code in C# .NET

Source code for the .NET framework in C#

                        

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; 

    ///  
    /// 
    ///    
    ///       Provides design-time support for the 
    ///       web control. 
    ///    
    ///  
    [System.Security.Permissions.SecurityPermission(System.Security.Permissions.SecurityAction.Demand, Flags=System.Security.Permissions.SecurityPermissionFlag.UnmanagedCode)] 
    [SupportsPreviewControl(true)]
    public class AdRotatorDesigner : DataBoundControlDesigner { 

        /// 
        /// 
        ///     
        ///       Returns the design-time HTML of 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.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK