Reputation:
I'm doing some profiling on a 1.1 app and have identified a problem. It seems that this function is taking forever to load on a certain page:
ParserCacheItem System.Web.UI.TemplateControlParser.CompileAndGetParserCacheItem(String, String, HttpContext)
I've searched around with no luck about what this does. Does anyone know what this function is doing? If I knew then maybe it would shed some light on the situation.
Thanks!?
Upvotes: 0
Views: 168
Reputation: 12163
Its really a process of elimination.
I've had similar problems where it seemed where I was the only one that had encounted a particular issue.
By breaking my page down I found the control that was causing the timeout/error and did some more specific searches around it.
I then found that the error actually had nothing to do with the symptoms I was experiencing, it was being masked by other issues.
It is an investment in time but you might find that there's some control or part of your page thats timing out for some completely unobvious reason and isn't being reported in anyway. You did hint that page was complex.
Upvotes: 1
Reputation: 12163
What does the page consist of?
Have you tried:
Upvotes: 0