Abort Operation in IE under ASP.NET+JavaScript
My colleague develop a page using ASP.NET and some javascript. Specifically say, that is a google map API page.
It runs okay under his local development environment but throw a Abort Operation error from IE when I test his page in a real situation remote environment.
The cause is he add some controls dynamically in code-behind and then use GetElementByID() in his javascript. and he invokes his javascript too early.
If you encounter this problem, you can try to postpone your GetElementByID().
No comments yet.