PowerWEB File Upload for ASP.NET
ViewStateCacheType Enumeration
See Also  Send comments on this topic.
Dart.FileUpload Namespace : ViewStateCacheType Enumeration



An enumeration used to describe how the ViewStateCache mechanism is configured.

Syntax

Visual Basic (Declaration) 
Public Enum ViewStateCacheType 
   Inherits System.Enum
Visual Basic (Usage)Copy Code
Dim instance As ViewStateCacheType
C# 
public enum ViewStateCacheType : System.Enum 
C++/CLI 
public enum class ViewStateCacheType : public System.Enum 

Members

MemberDescription
DisabledIndicates that ViewStateCache mechanism is disabled and encoded ViewState data will be transmitted with each callback.
EnabledIndicates that the ViewStateCache mechanism is enabled, causing only a unique PageKey to be transmitted with each callback.
OrderedIndicates that the ViewStateCache is enabled and each callback will additionally be executed and handled in the order transmitted from the client.

Remarks

Set this property in the web.config. For example:

<appSettings>
	<add key="Dart.LiveControls.ViewStateCacheType" value="Ordered"/>
</appSettings>
				

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Dart.FileUpload.ViewStateCacheType

Requirements

Target Platforms: Microsoft .NET Framework 2.0

See Also

Documentation Version 4.0.3
© 2012 Dart Communications. All Rights Reserved.