1) Wie schauts mit einem anderen Browser aus? Macht der FF auch Probleme?
2) http://support.microsoft.com/kb/175722
3) http://channel9.msdn.com/wiki/default.aspx/Channel9.InternetExplorerProgrammingBugs
"Operation aborted"
Apparently interacting with innerHTML and possibly using other Click to read this topic
8/19/2004 12:24:02 PM - NalaRegeork
JScript functionality causes IE to pop up "Internet Explorer cannot open the Internet site http://example.com. Operation aborted." messages after loading a page. This is sometimes attributed to BHO mal/spyware, but I can confirm it happens with no such software installed. This bug is present in IE SP1 and IE SP2.
http://peterjanes.ca/blog/archives/2003/12/03/hulk-smash
This is generally caused by DOM operations gone wrong,
I was having this problem trying to put some html inside a DIV tag using innerHTML and solved the problem by puting the DIV inside a TABLE.
Sample code for "Operation aborted"
This sample code will give you the "Operation aborted" error in IE6? What about IE7?
7/9/2007 5:56:04 AM - master-ok
IE6, while it works as expected in Firefox:
<table>
<tr>
<td>
<script type="text/Javascript">
var d = document.createElement('div');
document.body.appendChild(d);
</script>
</td>
</tr>
</table>
If the script part is moved outside the table it works in both IE6? What about IE7?
7/9/2007 5:56:04 AM - master-ok
IE6 and Firefox.
Note from neoprene:
This issue also affects document.write() on documents that are not fully loaded yet. Workaround: avoid document.write().
In MSE7 debugger, the error message is "htmlfile: operation aborted".
Note from netdragon:
This issue also affects document.getElementsByTagName("body")[0].appendChild
Workaround:
You have to wait until onload in order to do document.body.appendChild which is a bug in Internet Explorer's implementation. Do:
if (window.addEventListener) window.addEventListener("load",doOnload,false);
else if (window.attachEvent) window.attachEvent("onload",doOnload);
This should be fixed by Microsoft even though there's a workaround. The workaround may not be applicable in all cases.