Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > ASP.Net > Caching


Search:
What's New - What's Hot
Updating the ASP.NET Cache Based on Data in a SQL Server Database     
Total Hits: 83  |  Today: 0Author: Feature Articles      Rating:  
Read Reviews | Write Review |  Your Rating: 

With the ASP.NET Cache object contained in the System.Web.Caching namespace, you can easily store the contents of an XML file as an item in the ASP.NET cache object and link up that external file with the cached item by creating a CacheDependency object. Once you do this, whenever the XML file is modified, the ASP.NET runtime automatically removes the cached item from the cache. This is a very useful feature that allows you to keep the data in the cache up-to-date. However you can’t use this app...

Creating An XML Based Cache Using COM     
Total Hits: 158  |  Today: 0Author: Andreas Kviby,Binary Bros      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article I will demonstrate how to create an XML based cache system in COM using Visual Basic. This COM object is using the function Save in ADO to create XML based recordsets....

ASP.NET Caching: SQL Cache Dependency With SQL Server 2000     
Total Hits: 54  |  Today: 0Author: Muhammad Mosa      Rating:  
Read Reviews | Write Review |  Your Rating: 

As time passes, the data source may change in response to other actions. However, if your code uses caching, you may remain unaware of the changes and continue using out-of-date information from the cache. To help mitigate this problem, ASP.NET supports cache dependencies. Cache dependencies allow you to make a cached item dependent on another resource so that when that resource changes the cached item is removed automatically....

Doing HTTP Caching Right: Introducing httplib2     
Total Hits: 130  |  Today: 0Author: Joe Gregorio      Rating:  
Read Reviews | Write Review |  Your Rating: 

You need to understand HTTP caching. No, really, you do. I have mentioned repeatedly that you need to choose your HTTP methods carefully when building a web service, in part because you can get the performance benefits of caching with GET. Well, if you want to get the real advantages of GET then you need to understand caching and how you can use it effectively to improve the performance of your service....

Manage Detail Pages Across Multiple Platforms with Centralized Data Caching     
Total Hits: 40  |  Today: 0Author: Jason Salas      Rating:  
Read Reviews | Write Review |  Your Rating: 

Building great Web applications requires an understanding of the behavior patterns of your site's visitors and the ability to tactically predict their expected actions in using the features you provide. You need to accurately envision how people will use your services, and intelligently design your back end to allow for maximum performance and scalability. This results in a great experience for your customers and less of an operational headache for you.
This article discusses how to manage on...

Caching Data with a Web Service in Enterprise Library     
Total Hits: 97  |  Today: 0Author: Alex Homer      Rating:  
Read Reviews | Write Review |  Your Rating: 

Sometimes you find yourself thinking, "I wonder if I can make my application do this...?" The target of your thoughts might not immediately seem to be a useful, or even sensible, feature; but most developers tend to be attracted to unusual problems that offer a challenge....

ViewState Vs Data Caching     
Total Hits: 402  |  Today: 0Author: azamsharp      Rating:  
Read Reviews | Write Review |  Your Rating: 

A couple of days ago I ran into a confusion when I had to decide that whether to use ViewState or Data Caching. The use of ViewState as well as Data Caching technique would have provided me with the correct solution. One of the techniques was better than the other and I had to decide that which one to use. In this article I will discuss when to use ViewState and when to use Caching....

Data Caching with ASP.NET     
Total Hits: 274  |  Today: 0Author: devhood      Rating:  
Read Reviews | Write Review |  Your Rating: 

If you're using typically static data with your ASP.NET applications - such as that from a database server like Microsoft SQL Server - you should take a look at caching your data. Previously, this was not an easy thing to do, but the caching in .NET makes caching your data and objects a trivial task. This tutorial will cover basic caching and scenarios where caching would be good to use....

HOW TO: Improve Performance by Caching Pages in ASP.NET (Q315896)     
Total Hits: 413  |  Today: 0Author: MSDN      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to improve the performance of ASP.NET applications by caching entire ASP.NET pages with the @ OutputCache page directive. You can also the @ OutputCache page directive to cache specific portions of an ASP.NET page, though this article does not demonstrate this implementation....

Caching in ASP.NET  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Akash Thakural      Rating:  
Read Reviews | Write Review |  Your Rating: 

Caching is one of the features in ASP.NET which has been improved to a great extent as we move from conventional ASP to ASP.NET. Caching is helpful in improving the efficiency and speed of your web-page. You can do a lot in ASP.NET which would be clearly visible in the form of a fast application in .NET. Page caching in .NET is highly improved and has advance features like relating cache items with their dependencies. ASP.NET has several facilities for supporting caching: a Cache API for storing...

Enterprise Library Caching Application Block  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: AzamSharp      Rating:  
Read Reviews | Write Review |  Your Rating: 

Microsoft introduced Enterprise Library in January 2005. Many companies have migrated their code from the independent Application Blocks to the Enterprise Library Blocks. In this article I will introduce the Caching application block which is part of one of the blocks shipped with Enterprise Library....

Data Caching in ASP.NET  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: PIYALI SENGUPTA      Rating:  
Read Reviews | Write Review |  Your Rating: 

Caching is a technique of storing an in-memory copy of important and much used data/information to improve the performance of any software system. The idea is to place frequently used data in quickly accessed media. The ASP.Net runtime includes a key-value map of CLR objects called cache. This lives with the application and is available via the HttpContext and System.Web.UI.Page. Using cache is to some extent similar to using Session object. You can access items in the cache using an indexer and...

ASP.NET Caching Dependencies  Version: 0.00     Price: $0.00  
Total Hits: 3  |  Today: 0Author: AzamSharp      Rating:  
Read Reviews | Write Review |  Your Rating: 

The concept of Caching was introduced in ASP.NET 1.X and has been improved significantly in ASP.NET 2.0. Caching allows you to store commonly used items in the memory and thus not create them from scratch when they are requested. There are different types of Caching available in the .NET framework. In this article I will introduce you to Caching dependencies....

ASP.NET Charting Conlrol, look inside  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Ed Guzman      Rating:  
Read Reviews | Write Review |  Your Rating: 

When you develop an application, sometimes you have to develop some reporting tools.
As an example, your database holds information how many sales was daily done by a sales reps, and you want to report this in a nice graphic format for executive usage....

ASP.NET Charting Conlrol, look inside  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Ed Guzman      Rating:  
Read Reviews | Write Review |  Your Rating: 

When you develop an application, sometimes you have to develop some reporting tools.
As an example, your database holds information how many sales was daily done by a sales reps, and you want to report this in a nice graphic format for executive usage....

Object Caching - .Net 4  Version: 0.00     Price: $0.00  
Total Hits: 3  |  Today: 0Author: deanhume.com      Rating:  
Read Reviews | Write Review |  Your Rating: 

As a developer, we need to use all the tools at our disposal to develop faster and more robust applications. One of the ways we can achieve this is by using caching. Caching is the process of storing frequently used data on the server to fulfil subsequent requests. Now there are a few different types of caching available to the .NET developer, but in this article I am going to discuss data caching using the object cache. The cache object enables you to store everything from simple name / value ...

Catching Parsing Exceptions : LINQ to XML Part 5  Version: 0.00     Price: $0.00  
Total Hits: 3  |  Today: 0Author: Dhananjay Kumar      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is a very high level article which will explain; how to handle exception in parsing XML using LINQ to XML....

Build Better Data-Driven Apps With Distributed Caching  Version: 0.00     Price: $0.00  
Total Hits: 3  |  Today: 0Author: Aaron Dunnington      Rating:  
Read Reviews | Write Review |  Your Rating: 

Data-driven applications have become pervasive. Data flows from a myriad of sources including relational sources, service-oriented applications, syndicated feeds, and data-centric documents and messages. Application architectures continue to evolve to leverage this wealth of data accessibility. Additionally, the underlying hardware trends and technological advances across processing, storage, memory, and connectivity have enabled application architectures to harness inexpensive, commodity hardwa...

Caching (File Dependency) in ASP.Net  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Harshit Vyas      Rating:  
Read Reviews | Write Review |  Your Rating: 

Hi friends among of all the .NET's good features caching is my one of the favorite. Caching is really very easy to understand it's concept is that if we need to fetch the data multiple times from sqlserver or from any file it will cause in reduction of performance as we are taking same data's multiple time from database or any file so why to take same data again and again we can just store that data in our cache object....

TextAreas, AutoComplete Dropdown Box, JScript Garbage Collection, Caching, and More  Version: 0.00     Price: $0.00  
Total Hits: 2  |  Today: 0Author: Nancy Michell      Rating:  
Read Reviews | Write Review |  Your Rating: 

I'm trying to size a TextArea element. Is there a property you can set to control the width of a TextArea to be the size of its container, in this case a TD? Otherwise, is there a way to do this with DHTML?...


1  2  3  4  5  6  7  8  9  10  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net