While taking interviews of .NET developers I often ask this questions. But lots of people don’t know exact difference between this. So, I decided to write a separate blog about this. Here are the few differences. Web services can be hosted in IIS as well as outside of the IIS. While WCF service...
Friday, October 29, 2010
Tuesday, October 26, 2010
Output Caching in asp.net
Recently one of my friend ask about output cache so I decided to put a post about how output cache works and what is the advantages and disadvantage of using output cache. Output cache is a technique to cache generated response from the asp.net pages or controls. Output Caching increases the performance...
Difference between sliding expiration and absolute expiration
ASP.net cache is great feature through which we can increase the performance of the our web application via reducing server round trips to database. We can cache any serializable data into the cache. There are so many ways to cache data but one of the simplest way to cache data like insert data into...