3

我对ASP.NET Map Handler有性能问题。我有两个带有 .aspx 页面的文件夹。当计算机重新启动(启动)后首次加载应用程序时,用户在第一个文件夹中的一个页面到第二个文件夹中的另一个页面之间切换 - 这需要很长时间(图像上为 8 秒)。我使用始终预编译的 ASP.NET Web 应用程序项目。调试模式是发布。为什么在图像上运行ASP.NET 编译(性能监视器)???

性能监视器

4

1 回答 1

0

The results you are seeing are basically in line with the behaviour I expect from ASP.NET. 8 seconds startup is pretty standard for the first request at application start.

You may wish to look into ASP.NET Precompilation which may or may not help you - you'll have to try (I've experienced variable results).

于 2012-09-12T08:31:58.560 回答