Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / ErrorFormatterPage.cs / 1305376 / ErrorFormatterPage.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
/*
* This is a page class that is used for adaptive error formatting for mobile
* devices.
*
* NOTE: We explicitly override the state management methods because if the
* normal page class is used, an exception is thrown for mobile devices.
* For example, WmlPageAdapter uses SessionPageStatePersister
* for persisting view state. SessionPageStatePersister requires
* Context.Session to be available. Otherwise, it would throw in the
* constructor. However, when an error occurred, Context.Session is
* removed by SessionStateModule before the error is being formatted and
* rendered. Hence the methods are overridden below and ignored to avoid
* the exception since there is no need to persist any view state for the
* adaptive error page which is created dynamically during error handling.
*
* Copyright (c) 2003 Microsoft Corporation
*/
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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ListViewItemEventArgs.cs
- MDIControlStrip.cs
- OleDbConnectionPoolGroupProviderInfo.cs
- WebPartVerb.cs
- ConnectionStringSettingsCollection.cs
- VirtualizedItemProviderWrapper.cs
- ConstantCheck.cs
- FormsAuthenticationEventArgs.cs
- RouteUrlExpressionBuilder.cs
- View.cs
- HtmlControl.cs
- OperationFormatStyle.cs
- HttpPostedFileWrapper.cs
- AppSecurityManager.cs
- TemplateBindingExtensionConverter.cs
- Parser.cs
- WebPartDescriptionCollection.cs
- X509Chain.cs
- XPathDescendantIterator.cs
- CodeNamespaceImportCollection.cs
- PrivilegeNotHeldException.cs
- Sql8ExpressionRewriter.cs
- Helper.cs
- ErrorWrapper.cs
- TagNameToTypeMapper.cs
- Property.cs
- FocusManager.cs
- InvalidOperationException.cs
- ConnectionsZone.cs
- SuppressMergeCheckAttribute.cs
- EmptyImpersonationContext.cs
- DatagridviewDisplayedBandsData.cs
- UrlAuthorizationModule.cs
- TextReader.cs
- AttachedPropertyMethodSelector.cs
- ToolStripItemImageRenderEventArgs.cs
- InputBuffer.cs
- JsonSerializer.cs
- DataGridViewColumnTypeEditor.cs
- ServiceCredentials.cs
- ReverseInheritProperty.cs
- ClearTypeHintValidation.cs
- HtmlFormWrapper.cs
- DataGridParentRows.cs
- ClrPerspective.cs
- __ComObject.cs
- WebColorConverter.cs
- __TransparentProxy.cs
- WindowHelperService.cs
- EntryIndex.cs
- LoginNameDesigner.cs
- FormViewPageEventArgs.cs
- CompilerScopeManager.cs
- SoapFormatExtensions.cs
- XPathItem.cs
- DataRecord.cs
- SessionParameter.cs
- SemanticResolver.cs
- NetworkAddressChange.cs
- XsltOutput.cs
- PathStreamGeometryContext.cs
- HttpBrowserCapabilitiesBase.cs
- MetadataArtifactLoaderComposite.cs
- BinaryFormatter.cs
- ClrPerspective.cs
- DataKeyArray.cs
- VersionedStreamOwner.cs
- DirectoryNotFoundException.cs
- RequestCachingSection.cs
- CounterSet.cs
- DataPagerFieldItem.cs
- BuildProviderAppliesToAttribute.cs
- ISCIIEncoding.cs
- SqlDependencyUtils.cs
- mediaeventargs.cs
- OneWayChannelListener.cs
- XpsLiterals.cs
- FtpWebResponse.cs
- PerformanceCounterLib.cs
- X509Certificate2Collection.cs
- NativeMethods.cs
- XmlChildEnumerator.cs
- DocumentPage.cs
- RadialGradientBrush.cs
- DependencyPropertyDescriptor.cs
- RtfFormatStack.cs
- DataBindingList.cs
- FormViewUpdateEventArgs.cs
- DefinitionUpdate.cs
- DllHostedComPlusServiceHost.cs
- SingleQueryOperator.cs
- Hash.cs
- MenuCommands.cs
- TabControl.cs
- EncodingTable.cs
- Exceptions.cs
- EntityDataSourceQueryBuilder.cs
- TemplateParser.cs
- GridViewItemAutomationPeer.cs
- D3DImage.cs