How to access a cached objectdatasource data of a formview?
ASP.NET
1
Posts
1
Posters
0
Views
1
Watching
-
I have a form view that use objectDataSource with cache enable as following: <asp:ObjectDataSource ID="odsTest" Runat="server" EnableCaching="true" CacheDuration="300" CacheExpirationPolicy="Sliding" CacheKeyDependency="ckdCaseExam" TypeName="App.Test" SelectMethod="GetTestList" UpdateMethod="fvwTest"> *Assuming the SELECT item1, item2, item3 from tblTest WHERE item4 =’Y’ I need to access the cached data to check something in code behind without refresh the data. How can I do it?