Page.Items Property
.NET Framework 2.0
Gets a list of objects stored in the page context.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
'Declaration Public ReadOnly Property Items As IDictionary 'Usage Dim instance As Page Dim value As IDictionary value = instance.Items
/** @property */ public IDictionary get_Items ()
public function get Items () : IDictionary
Not applicable.
Property Value
A reference to an IDictionary containing objects stored in the page context.Use the Items property to store objects with the same lifetime as the page request. This property is read-only; however, you can add objects to the IDictionary object it returns.
Objects added to the Items property are available throughout the lifetime of the page, so you can add objects to the Items property in events early in the page life cycle and access those objects in later events.
Community Additions
ADD
Show: