Cache.Get Method
.NET Framework 4
Retrieves the specified item from the Cache object.
Assembly: System.Web (in System.Web.dll)
Parameters
- key
- Type: System.String
The identifier for the cache item to retrieve.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Example not 100% clear
The example shown here may not be 100% clear, particularly to new developers - It seems to suggest that a control name + property needs to be passed as the key, which is not the case - In actual fact it requires any String, representing the key name for the cache item, e.g:
Cache.Get("cacheItemName")
Of course, the actual value of "cacheItemName" could have been derived from myTextBox.Text
Cache.Get("cacheItemName")
Of course, the actual value of "cacheItemName" could have been derived from myTextBox.Text
- 3/18/2011
- smh_poole