I have different urls that points to the same code
http://www.url1.com
http://www.url2.com
I need to use the cache, but if the asp net cache is enabled when someone access to http://www.url1.com next person accessing http://www.url2.com could get the previously cached data (www.url1.com)
I need to have ALL caches activated except this one.
You can disable ASP.Net output caching for the entire application by putting it in your web.config file.
But unless you’re actually putting anything in the cache in the first place, you don’t have anything to worry about.