|
|
|
|
|
| | Total Hits: 83 | Today: 0 | Author: Feature Articles | 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... |
| | Total Hits: 158 | Today: 0 | Author: Andreas Kviby,Binary Bros | 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.... |
| | Total Hits: 54 | Today: 0 | Author: Muhammad Mosa | 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.... |
| | Total Hits: 130 | Today: 0 | Author: Joe Gregorio | 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.... |
| | Total Hits: 40 | Today: 0 | Author: Jason Salas | 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... |
| | Total Hits: 97 | Today: 0 | Author: Alex Homer | 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.... |
| | Total Hits: 402 | Today: 0 | Author: azamsharp | 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.... |
| | Total Hits: 274 | Today: 0 | Author: devhood | 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.... |
| | Total Hits: 413 | Today: 0 | Author: MSDN | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Akash Thakural | 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... |
| | Total Hits: 2 | Today: 0 | Author: AzamSharp | 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.... |
| | Total Hits: 2 | Today: 0 | Author: PIYALI SENGUPTA | 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... |
| | Total Hits: 3 | Today: 0 | Author: AzamSharp | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Ed Guzman | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Ed Guzman | 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.... |
| | Total Hits: 3 | Today: 0 | Author: deanhume.com | 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 ... |
| | Total Hits: 3 | Today: 0 | Author: Dhananjay Kumar | Rating:  |
| |  This is a very high level article which will explain; how to handle exception in parsing XML using LINQ to XML.... |
| | Total Hits: 3 | Today: 0 | Author: Aaron Dunnington | 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... |
| | Total Hits: 2 | Today: 0 | Author: Harshit Vyas | 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.... |
| | Total Hits: 2 | Today: 0 | Author: Nancy Michell | 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?... |
|
|
|
|
|
|
|
|
|
|
|
|
|