Ask a Question related to ASP.NET General, Design and Development.
-
Joe Curry #1
Datatable Caching
if (Cache["MyDatatable"] == null)
Fill MyDatatable
Cache.Insert("MyDatatable",dtDatatable,null,DateTi me.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...
Joe Curry Guest
-
huh can`t pass datatable ????
isn`t it possible to pass a datatable with a webservice to another .net app ??? my webservice raises an exception whenever i declare the... -
Update the Datatable
Howdy, I'm using a datatable in a session variable as a shopping cart. The datatable is created statically and is loaded by the user. However, I... -
Add controls in datatable
Hi, I want to add a Textbox in my datatable before binding my datagrid with it. But i can't find a way to do it. Did someone know what i'm... -
Arraylist and datatable
I want to take a collection of objects in an Arraylist and turn them into a datatable so I can set it equal to a dataview. I want to use the... -
how to get row if in datatable?
I need to modify a datatable. I am wondering how to get the datatable row index number? assuming I have a column 0 whose entry is unique. Thanks. -
Natty Gur #2
Re: Datatable Caching
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
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Natty Gur Guest



Reply With Quote

