Rocky Singh
Rocky Singh

Reputation: 15430

Global cache object keeps adding items

I noticed that in my ASP.NET web application, the internal global cache object keeps adding items like: System.Web.Script.Services.WebServiceData:/mypages/default.aspx. Note that I do have a folder "mypages" with a default.aspx in it. Why is this page being added in ASP.NET cache the moment I access it? While debugging in detail, I noticed many more pages being added in the cache. Why is ASP.NET adding my app page links in cache?

Upvotes: 2

Views: 264

Answers (1)

Vivek
Vivek

Reputation: 440

It might be because OutputCaching is enabled on your web site. ASP.NET caches pages for faster performance.

Upvotes: 1

Related Questions