Datatable Caching

J

Joe Curry

if (Cache["MyDatatable"] == null)
Fill MyDatatable

Cache.Insert("MyDatatable",dtDatatable,null,DateTime.Now.AddMinutes(5),Syste
m.TimeSpan.Zero);
In debug mode Cache["MyDatatable"].Rows.Count = 38;
else
dtDatatable = (System.Data.DataTable) Cache["MyDatatable"];

Now on a post back
In debug mode Cache["MyDatatable"].Rows.Count = 0;


What gives...
 
N

Natty Gur

maybe 5 sec. pass ?

Natty Gur, CTO
Dao2Com Ltd.
28th Baruch Hirsch st. Bnei-Brak
Israel , 51114

Phone Numbers:
Office: +972-(0)3-5786668
Fax: +972-(0)3-5703475
Mobile: +972-(0)58-888377

Know the overall picture
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,537
Members
45,024
Latest member
ARDU_PROgrammER

Latest Threads

Top