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
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.