Not enough storage is available to complete this operation

前端 未结 1 1675
臣服心动
臣服心动 2021-02-04 03:45

I have an asp page with Timer control. Timer control will trigger some method to execute.

When this page is loaded, following error comes and timer control is not trigge

相关标签:
1条回答
  • 2021-02-04 04:20

    Finally I found the issue to get this "Not enough storage is available to complete this operation." appear on IE9.

    The reason is IE9 has a limitation to have 31 css references per page. In my page has more than 31 references.

    Refer following link.

    http://blogs.telerik.com/blogs/posts/10-05-03/internet_explorer_css_limits.aspx.

    To resolve this issue. I moved the all css in App_Theame to new folder. and create one css in App_Theme folder, and include "@import url("../../styles/Stylesheet01.css");" lines per each css.

    Then browser will refer to only one css.

    0 讨论(0)
提交回复
热议问题