Domino 9 und frühere Versionen > ND7: Entwicklung

Dokumente lassen sich über das Web nicht mehr öffnen

<< < (3/4) > >>

pete_bla:
ist das problem verflogen ?

sonst versuch mal:
- geht das doc in Notes auf ? (bringt nur was wenn die gleiche maske für notes&web verwendet wird)
- im designer mal die Maske nach irgenwelchen @DBLookups und @DBColumns (für Auwahllisten) prüfen - hier knallts gern

DAU-in:
a) Masken gehen im web nicht auf
b) habe ich überprüft, es gibt zwar viele, es knallt bei ihnen nicht.

Ich bin immer noch am 'imKotwühlen'.  :-[

pete_bla:

--- Zitat von: DAU-in am 17.08.07 - 18:10:46 ---a) Masken gehen im web nicht auf

--- Ende Zitat ---
mach doch doc das nicht im web aufgehen will mit notes auf.
- geht das ? ja/nein
wenn nein, dann haben wir einen hinweis dass was mit dem doc oder mit einem lookup nicht funktioniert (und können weiterschauen)

DAU-in:
sorry, hatte ich oben falsch geschrieben.
die Masken sind reine Webmasken, die DB ist nicht für den Zugriff über Notes konzipiert.

m3:
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

--- Code: --- "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.
--- Ende Code ---

Navigation

[0] Themen-Index

[#] Nächste Seite

[*] Vorherige Sete

Zur normalen Ansicht wechseln