ASP.NET 1.1 性能问题
我正在对 1.1 应用程序进行一些分析并发现了一个问题。 似乎这个函数需要永远加载到某个页面上:
ParserCacheItem System.Web.UI.TemplateControlParser.CompileAndGetParserCacheItem(String, String, HttpContext)
我已经四处搜索,但没有找到它的作用。 有谁知道这个函数是做什么的? 如果我知道的话也许会对情况有所了解。
谢谢!?
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!?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这实际上是一个消除的过程。
我也遇到过类似的问题,似乎我是唯一遇到特定问题的人。
通过分解我的页面,我找到了导致超时/错误的控件,并围绕它做了一些更具体的搜索。
然后我发现该错误实际上与我遇到的症状无关,它被其他问题掩盖了。
这是一项时间投资,但您可能会发现页面的某些控件或部分由于某些完全不明显的原因而超时,并且无论如何都不会被报告。 您确实暗示该页面很复杂。
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.
页面由什么组成?
您是否尝试过:
What does the page consist of?
Have you tried: