| What is an application object? | ||
Application object can be used in situation where we want data to be shared across users globally.
| ||
| What is the difference between Cache object and application object? | ||
The Cache object provides cache-speific features, such as dependencies and expiration policies.
| ||
| How can get access to cache object? | ||
The Cache object is defined in the System.Web.Caching namespace. You can get a reference to the Cache object by using the Cache property of the HttpContext class in the System.Web namespace or by using the Cache property of the Page object.
| ||
| What are dependencies in cache and types of dependencies? | ||
| ||
| What is Cache Callback in Cache? | ||
Cache object is dependent on its dependencies example file based, time based etc... Cache items remove the object when cache dependencies change. ASP.NET provides capability to execute a callback method when that item is removed from cache.
| ||
| What is scavenging? | ||
When server running your ASP.NET application runs low on memory resources, items are removed from cache depending on cache item priority. Cache item priority is set when you add item to cache. By setting the cache item priority controls the items scavenging are removed first.
| ||
| What are different types of caching using cache object of ASP.NET? | ||
| ||
| How can you cache different version of same page using ASP.NET cache object? | ||
Output cache functionality is achieved by using "OutputCache" attribute on ASP.NET page header. Below is the syntax
VaryByParam : Caches different version depending on input parameters send through HTTP POST/GET. VaryByHeader : Caches different version depending on the contents of page header. VaryByCustom : Lets you customize the way the cache handles page variations by declaring the attribute and overriding the GetVaryByCustomString handler. VaryByControl : Caches different versions of a user control based on the value of properties of ASP objects in the control. | ||
| How will implement Page Fragment Caching? | ||
Page fragment caching involves the caching of a fragment of the page, rather than the entire page. When portions of the page are need to be dynamically created for each user request this is best method as compared to page caching. You can wrap Web Forms user control and cache the control so that these portions of the page don't need to be recreated each time.
| ||
| Can you compare ASP.NET sessions with classic ASP? | ||
ASP.NET session caches per user session state. It basically uses "HttpSessionState" class.
Following are the limitations in classic ASP sessions :- ASP session state is dependent on IIS process very heavily. So if IIS restarts ASP session variables are also recycled. ASP.NET session can be independent of the hosting environment thus ASP.NET session can maintained even if IIS reboots. ASP session state has no inherent solution to work with Web Farms. ASP.NET session can be stored in state server and SQL SERVER which can support multiple server. ASP session only functions when browser supports cookies. ASP.NET session can be used with browser side cookies or independent of it. |






0 comments:
Post a Comment