ASP.NET 1.1 性能问题

发布于 2024-07-07 08:04:39 字数 256 浏览 6 评论 0原文

我正在对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

行至春深 2024-07-14 08:04:39

这实际上是一个消除的过程。

我也遇到过类似的问题,似乎我是唯一遇到特定问题的人。

通过分解我的页面,我找到了导致超时/错误的控件,并围绕它做了一些更具体的搜索。

然后我发现该错误实际上与我遇到的症状无关,它被其他问题掩盖了。

这是一项时间投资,但您可能会发现页面的某些控件或部分由于某些完全不明显的原因而超时,并且无论如何都不会被报告。 您确实暗示该页面很复杂。

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.

风筝在阴天搁浅。 2024-07-14 08:04:39

页面由什么组成?

您是否尝试过:

  • 从页面中删除所有元素并再次运行探查器,看看是否发生相同的错误,如果它没有添加每个元素以缩小导致它的原因,那么
  • 所有命名空间引用对于 .aspx 都是正确的吗?
  • 您是否尝试过在另一个运行 IIS 的机器上运行该应用程序,看看配置是否是问题所在?

What does the page consist of?

Have you tried:

  • removing all elements from the page and running the profiler again and seeing if the same error occurs, if it doesn't add each element back to narrow down what was causing it
  • are all the namespace references correct for the .aspx?
  • have you tried running the app on another box thats running IIS to see if configuration might be the issue?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文