Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / HiddenFieldPageStatePersister.cs / 1305376 / HiddenFieldPageStatePersister.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Text;
using System.Security.Permissions;
public class HiddenFieldPageStatePersister : PageStatePersister {
public HiddenFieldPageStatePersister(Page page) : base (page) {
}
public override void Load() {
NameValueCollection requestValueCollection = Page.RequestValueCollection;
if (requestValueCollection == null) {
return;
}
string viewStateString = null;
try {
viewStateString = Page.RequestViewStateString;
// VSWhidbey 160556
if (!String.IsNullOrEmpty(viewStateString) || !String.IsNullOrEmpty(Page.ViewStateUserKey)) {
Pair combinedState = (Pair)Util.DeserializeWithAssert(StateFormatter, viewStateString);
ViewState = combinedState.First;
ControlState = combinedState.Second;
}
}
catch (Exception e) {
// throw if this is a wrapped ViewStateException -- mac validation failed
if (e.InnerException is ViewStateException) {
throw;
}
ViewStateException.ThrowViewStateError(e, viewStateString);
}
}
///
/// To be supplied.
///
public override void Save() {
if (ViewState != null || ControlState != null) {
Page.ClientState = Util.SerializeWithAssert(StateFormatter, new Pair(ViewState, ControlState));
}
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//-----------------------------------------------------------------------------
namespace System.Web.UI {
using System;
using System.Collections;
using System.Collections.Specialized;
using System.IO;
using System.Text;
using System.Security.Permissions;
public class HiddenFieldPageStatePersister : PageStatePersister {
public HiddenFieldPageStatePersister(Page page) : base (page) {
}
public override void Load() {
NameValueCollection requestValueCollection = Page.RequestValueCollection;
if (requestValueCollection == null) {
return;
}
string viewStateString = null;
try {
viewStateString = Page.RequestViewStateString;
// VSWhidbey 160556
if (!String.IsNullOrEmpty(viewStateString) || !String.IsNullOrEmpty(Page.ViewStateUserKey)) {
Pair combinedState = (Pair)Util.DeserializeWithAssert(StateFormatter, viewStateString);
ViewState = combinedState.First;
ControlState = combinedState.Second;
}
}
catch (Exception e) {
// throw if this is a wrapped ViewStateException -- mac validation failed
if (e.InnerException is ViewStateException) {
throw;
}
ViewStateException.ThrowViewStateError(e, viewStateString);
}
}
///
/// To be supplied.
///
public override void Save() {
if (ViewState != null || ControlState != null) {
Page.ClientState = Util.SerializeWithAssert(StateFormatter, new Pair(ViewState, ControlState));
}
}
}
}
// 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
- ObjectRef.cs
- TextDecorations.cs
- HttpListener.cs
- ExtensionWindowResizeGrip.cs
- CodeIdentifier.cs
- LowerCaseStringConverter.cs
- SrgsElementList.cs
- TraceSource.cs
- EdmTypeAttribute.cs
- PenThreadPool.cs
- ProtocolsConfiguration.cs
- InstanceDescriptor.cs
- SpecialFolderEnumConverter.cs
- Window.cs
- ObjectTag.cs
- XmlHierarchicalEnumerable.cs
- CharEntityEncoderFallback.cs
- BitmapEffectInputData.cs
- LocatorManager.cs
- WindowsAuthenticationEventArgs.cs
- DataPagerFieldItem.cs
- PageRequestManager.cs
- ScriptServiceAttribute.cs
- TemplateComponentConnector.cs
- BehaviorEditorPart.cs
- SecurityPolicySection.cs
- Range.cs
- BasePropertyDescriptor.cs
- AuthorizationContext.cs
- SoapDocumentMethodAttribute.cs
- XPathDocumentBuilder.cs
- ListViewCancelEventArgs.cs
- XmlSerializableServices.cs
- HtmlLink.cs
- FileEnumerator.cs
- PathTooLongException.cs
- TypeDependencyAttribute.cs
- AnnotationResourceCollection.cs
- GCHandleCookieTable.cs
- TypeReference.cs
- Size3D.cs
- TriState.cs
- XmlJsonWriter.cs
- BuildResult.cs
- _KerberosClient.cs
- ExcCanonicalXml.cs
- iisPickupDirectory.cs
- Geometry3D.cs
- BaseTemplateParser.cs
- DbConnectionStringCommon.cs
- XhtmlBasicPanelAdapter.cs
- TreeNodeStyleCollection.cs
- MessageHeader.cs
- _StreamFramer.cs
- EventsTab.cs
- DbExpressionVisitor.cs
- ProxyWebPartManager.cs
- PrtTicket_Public.cs
- DbDataReader.cs
- InvalidOperationException.cs
- util.cs
- ComponentEvent.cs
- StrokeCollectionDefaultValueFactory.cs
- WorkflowInstanceTerminatedRecord.cs
- ThicknessAnimationUsingKeyFrames.cs
- CFStream.cs
- CheckBox.cs
- Line.cs
- InstancePersistenceCommand.cs
- CorrelationActionMessageFilter.cs
- ListParagraph.cs
- BuildManager.cs
- EventDescriptor.cs
- Oid.cs
- TCPClient.cs
- FixedSOMPage.cs
- DesignBindingPropertyDescriptor.cs
- RepeaterItemCollection.cs
- SchemaElementDecl.cs
- LessThan.cs
- StylusTip.cs
- LogRecordSequence.cs
- MouseActionConverter.cs
- httpstaticobjectscollection.cs
- Paragraph.cs
- WeakHashtable.cs
- UnionCqlBlock.cs
- HttpWebRequest.cs
- DeliveryRequirementsAttribute.cs
- CodeNamespaceImport.cs
- ContentFileHelper.cs
- AssemblyInfo.cs
- GenericNameHandler.cs
- PrivateFontCollection.cs
- XmlIlGenerator.cs
- MailWriter.cs
- PropertyNames.cs
- ServiceChannelProxy.cs
- ReflectionTypeLoadException.cs
- ColumnCollection.cs