hallo S. Kurth
kennt jemand eine Möglichkeit mit JavaScript oder Java zu prüfen,
ob der User gerade online oder offline ist??
ungefaehr so:
function getConnectionTyp()
{if (self.location.href.toLowerCase().indexOf("http://") >= 0) {return "global"}; //online (http)
if (self.location.href.toLowerCase().indexOf("https://") >= 0) {return "global"}; //online (secure http)
if (self.location.href.toLowerCase().indexOf("www.") >= 0) {return "global"}; //online
if (self.location.href.toLowerCase().indexOf("a:") >= 0) {return "floppydisk"}; //offline(floppy)
if (self.location.href.toLowerCase().indexOf("file:///a") >= 0) {return "floppydisk"}; //offline(floppy)
if (self.location.href.toLowerCase().indexOf("c:") >= 0) {return "harddrive"}; //offline(drive c)
if (self.location.href.toLowerCase().indexOf("file:///c") >= 0) {return "harddrive"}; //offline(drive c)
return "lokal"; //auf alle faelle offline - lokales netzwerk oder ein anderes nicht abgeprueftes laufwerk
} //diese loesung gilt fuer eine bekannte umgebung - in Deinem fall gelten die ersten 3zeilen
by(t)e by(t)e - peterS. - pseliger@gmx.net