| Thread | Last Post | Replies |
|
| ViewState vs Cache Which is best in my situation | 26 Nov 2003 03:29 GMT | 1 |
Hi!, First I will explain what i am doing. Basically i have two pages. 1) List all the records he has to do work, and he can sort by anyfield.
|
| Caching dataset issue and question | 26 Nov 2003 03:20 GMT | 1 |
I need to cache a dataset. When stepping through the locals show that it works, however, when i get to point where I need to bind the data i receive an "IListSource" error. Any help? Also, is this dataset being cached in
|
| Urgently Session.SessionID at Global.asax.vb | 22 Nov 2003 17:00 GMT | 1 |
I'm new to Session.SessionID in Global.asax.vb I wanted to use the sessionID in "Application_AuthenticateRequest" to check for sessionID for each IE, for testing purposes I just put Response.Write(Session.SessionID), but it shows
|
| Warning: Page has Expired | 21 Nov 2003 16:17 GMT | 4 |
what i want to do is the folowing: I don't want the pages to be cached, this way when a user presses the IE back button, the page is fetched from the server and not from the cache and this allows me to check the session, and display pages accordingly.(
|
| HttpContext in LDASM | 21 Nov 2003 08:20 GMT | 3 |
Could you help me to understand next fact... I open in LDASM System.Web.dll and read: .method /*060002D7*/ public hidebysig specialname static class System.Web.HttpContext/* 02000051 */
|
| Creating Cache object trouble | 19 Nov 2003 09:32 GMT | 7 |
Please help me to create my own Cache() object... When I create like this System.Web.Caching _ca = new System.Web.Caching.Cache(); I get not null _ca object but cannot use this object. NullReferenceException
|
| How to delete cached DB connections | 18 Nov 2003 19:25 GMT | 1 |
We have a .NET page that accesses a Microsoft Access file. With vb.net, we create a "pass-through" query using the querydef object. The problem today was that the Oracle database was restarted last night. Now, our .NET page,
|
| .ascx caching / cannot make changes to one page | 18 Nov 2003 17:02 GMT | 1 |
Ok, I'm out of ideas and I have been working with 2 other people on this. I ma basically in charge of updating the front end of this application. I am working purely on the front end of an application. There is one
|
| can i disable caching app wide? | 18 Nov 2003 16:43 GMT | 1 |
i have dozens of web forms and user controls that use the page directive caching. i recently made design changes to most of the files. however the changes did not appear because these components were all cached. is there a simple on/off switch for all cached pages and controls for ...
|
| asp.net code | 18 Nov 2003 04:45 GMT | 1 |
is asp.net code ever sent to the browser
|
| ASP.NET controls in Office 2003 style? | 17 Nov 2003 18:45 GMT | 3 |
Hi!! I'm looking for some ASP.NET controls in Office 2003 web access style. Mainly an Outlook 2003 web access calendar control. Is something like this anywhere available?
|
| VaryByControl and Cache Dependency | 14 Nov 2003 08:08 GMT | 3 |
I am trying to set up fragment caching by using the VaryByControl attribute in a page directive in an ascx file. At the same time I also need to set the output response of the user control to be dependent on a file so that I can invalidate the cache when the content of the file has ...
|
| OutputCache does not seem to work | 13 Nov 2003 16:39 GMT | 6 |
I can't seem to get the OutputCache directive to work. Is there some switch in the webconfig, or somewhere that I am unaware of, to turn this on? Every refresh seems to just recompile the page, and give me the current time, instead of waiting two minutes before fetching a fresh ...
|
| What happens here? | 11 Nov 2003 17:46 GMT | 3 |
Take a common example of using the cache: DataSet MyData = Cache["MyData"]; if(MyData == null){ MyData = new MyDataSet();
|
| How does the Cache object work internally? | 11 Nov 2003 14:15 GMT | 12 |
I have a set of global data which I want to cache, but I'm concerned about how the Cache object stores its items. I do not want this global data to be a performance bottle-neck, so I would like to know how it is actually being stored.
|