ErrorFormatterPage.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / ErrorFormatterPage.cs / 1 / ErrorFormatterPage.cs

                            //------------------------------------------------------------------------------ 
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// 
//----------------------------------------------------------------------------- 

/* 
 * This is a page class that is used for adaptive error formatting for mobile 
 * devices.
 * 
 *


 

 
 

 



*/ 

namespace System.Web.UI { 
    internal sealed class ErrorFormatterPage: Page { 
        protected internal override void SavePageStateToPersistenceMedium(Object viewState) {
            // Override and ignore. No need to save view state for this page. 
        }

        protected internal override Object LoadPageStateFromPersistenceMedium() {
            // Override and ignore. No view state to load for this page. 
            return null;
        } 
    } 
}

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