Asp.net 脚本管理器内存泄漏
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
很可能有足够的内存,而 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?