ZoneButton.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / ZoneButton.cs / 3 / ZoneButton.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 ZoneButton : Button { 

        private WebZone _owner; 
        private string _eventArgument; 

        public ZoneButton(WebZone owner, string eventArgument) { 
            if (owner == null) {
                throw new ArgumentNullException("owner");
            }
            _owner = owner; 
            _eventArgument = eventArgument;
        } 
 
        [
        DefaultValue(false), 
        ]
        public override bool UseSubmitBehavior {
            get {
                return false; 
            }
            set { 
                // This is an internal sealed class so we know the setter is never called. 
                throw new InvalidOperationException();
            } 
        }

        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.ClientSubmit = true; 

                return options; 
            }

            return base.GetPostBackOptions();
        } 
    }
} 

// 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.WebParts { 
 
    using System;
    using System.ComponentModel; 
    using System.Web.UI.WebControls;

    [SupportsEventValidation]
    internal sealed class ZoneButton : Button { 

        private WebZone _owner; 
        private string _eventArgument; 

        public ZoneButton(WebZone owner, string eventArgument) { 
            if (owner == null) {
                throw new ArgumentNullException("owner");
            }
            _owner = owner; 
            _eventArgument = eventArgument;
        } 
 
        [
        DefaultValue(false), 
        ]
        public override bool UseSubmitBehavior {
            get {
                return false; 
            }
            set { 
                // This is an internal sealed class so we know the setter is never called. 
                throw new InvalidOperationException();
            } 
        }

        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.ClientSubmit = true; 

                return options; 
            }

            return base.GetPostBackOptions();
        } 
    }
} 

// 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