DataControlButton.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebControls / DataControlButton.cs / 1305376 / DataControlButton.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 Button used within a DataControl.
    ///  
    [SupportsEventValidation] 
    internal sealed class DataControlButton : Button {
 
        IPostBackContainer _container;

        internal DataControlButton(IPostBackContainer container) {
            _container = container; 
        }
 
        public override bool CausesValidation { 
            get {
                return false; 
            }
            set {
                throw new NotSupportedException(SR.GetString(SR.CannotSetValidationOnDataControlButtons));
            } 
        }
 
        public override bool UseSubmitBehavior { 
            get {
                return false; 
            }
            set {
                throw new NotSupportedException();
            } 
        }
 
        protected sealed override PostBackOptions GetPostBackOptions() { 
            PostBackOptions options;
 
            if (_container != null) {
                options = _container.GetPostBackOptions(this);

                if (Page != null) { 
                    options.ClientSubmit = true;
                } 
            } 
            else {
                options = base.GetPostBackOptions(); 
            }

            return options;
        } 
    }
} 
 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

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