Asp.net 脚本管理器内存泄漏

发布于 2024-12-08 02:37:49 字数 496 浏览 0 评论 0原文

我正在使用 asp.net 脚本管理器,代码如下:

        <asp:ScriptReference Path="~/Scripts/jquery-1.5.1.min.js"  />
        <asp:ScriptReference Path="~/Scripts/Core.js"  />
        <asp:ScriptReference Path="~/Scripts/TomasCore.js"  />
        <asp:ScriptReference Path="~/Scripts/jquery-ui-1.8.13.custom.min.js"  />
    </Scripts>
</asp:ScriptManager>

当我运行此应用程序时,每次页面刷新,内存使用量都会增加 5MB。

有人可以解释一下吗?

谢谢, 马赫什

I am using asp.net script manager and the code is as given below:

        <asp:ScriptReference Path="~/Scripts/jquery-1.5.1.min.js"  />
        <asp:ScriptReference Path="~/Scripts/Core.js"  />
        <asp:ScriptReference Path="~/Scripts/TomasCore.js"  />
        <asp:ScriptReference Path="~/Scripts/jquery-ui-1.8.13.custom.min.js"  />
    </Scripts>
</asp:ScriptManager>

When I run this application, the memory usage is creeping up by 5MB for every page refresh.

Could anyone please throw light on this??

Thanks,
Mahesh

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

维持三分热 2024-12-15 02:37:49

很可能有足够的内存,而 GC 还没有理由启动并释放内存。您应该测试如果循环调用 200 次会发生什么。

如果删除 ScriptManager 还可以重现吗?

Chances are there is enough memory and the GC has no reason to kick in and free memory yet. You should test what happens if you loop like 200 calls.

Also can you reproduce this if you remove the ScriptManager?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文