Hallo ich wollte mich auf der besagten Seite einloggen, was aber nicht funktioniert
Wo liegt das Problem?
Danke & Gruss
Hallo ich wollte mich auf der besagten Seite einloggen, was aber nicht funktioniert
Wo liegt das Problem?
Danke & Gruss
Zitat von masusuma
Wo liegt das Problem?
Fehlermeldung bei mir: "Sie müssen Internet Explorer 5.5 oder höher installiert haben, um diese Seite anzeigen zu können"
Wahrscheinlich wieder eine Seite die - wie es so schön heißt - "für den Internet Explorer optimiert ist".
Mehr kann ich leider nicht dazu sagen :cry:
-GA-
Visual Studio ist zur Erstellung von Webseiten offenbar genau so wenig geeignet wie die Office-Produkte von M$, die Browserweiche ist wirklich genial. :wink:
// Determine Browswer Types Etc.
function BrowserCheck() {
var b = navigator.appName
if (b=="Netscape") this.b = "ns"
else if (b=="Microsoft Internet Explorer") this.b = "ie"
else this.b = b
this.v = parseInt(navigator.appVersion)
this.ns = (this.b=="ns" && this.v>=4)
this.ns4 = (this.b=="ns" && this.v==4)
this.ns5 = (this.b=="ns" && this.v==5)
this.ns6 = (this.b=="ns" && this.v==6)
this.ie = (this.b=="ie" && this.v>=4)
this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0)
this.ie5 = (navigator.userAgent.indexOf('MSIE 5.0')>0)
this.ie55 = (navigator.userAgent.indexOf('MSIE 5.5')>0)
this.ie6 = (navigator.userAgent.indexOf('MSIE 6')>0)
this.ie7 = (navigator.userAgent.indexOf('MSIE 7')>0)
this.ieCE = (navigator.userAgent.indexOf('Windows CE')>0 || navigator.userAgent.indexOf('MSIE 6.0; Win32')>0);
if (this.ie5) this.v = 5
if (this.ie6) this.v = 6
if (this.ie7) this.v = 7
this.min = (this.ns||this.ie)
}
Alles anzeigen
Gruß
Werner
Zitat von wm44... die Browserweiche ist wirklich genial. :wink:
Code Alles anzeigen// Determine Browswer Types Etc. function BrowserCheck() { var b = navigator.appName if (b=="Netscape") this.b = "ns" else if (b=="Microsoft Internet Explorer") this.b = "ie" else this.b = b this.v = parseInt(navigator.appVersion) this.ns = (this.b=="ns" && this.v>=4) this.ns4 = (this.b=="ns" && this.v==4) this.ns5 = (this.b=="ns" && this.v==5) this.ns6 = (this.b=="ns" && this.v==6) this.ie = (this.b=="ie" && this.v>=4) this.ie4 = (navigator.userAgent.indexOf('MSIE 4')>0) this.ie5 = (navigator.userAgent.indexOf('MSIE 5.0')>0) this.ie55 = (navigator.userAgent.indexOf('MSIE 5.5')>0) this.ie6 = (navigator.userAgent.indexOf('MSIE 6')>0) this.ie7 = (navigator.userAgent.indexOf('MSIE 7')>0) this.ieCE = (navigator.userAgent.indexOf('Windows CE')>0 || navigator.userAgent.indexOf('MSIE 6.0; Win32')>0); if (this.ie5) this.v = 5 if (this.ie6) this.v = 6 if (this.ie7) this.v = 7 this.min = (this.ns||this.ie) }
Gruß
Werner
IE7 kennen, aber bei Netscape ist schon bei 6.0 Schluss ?
Cool, dabei ist Netscape bei 8.x :lol:
...:AOD:...
Zitat von AngelOfDarknessIE7 kennen ...
Von kennen kann man da eigentlich nicht reden, Visual Studio 6.0 ist nämlich schon recht betagt, die interne Versionsnummer von Visual Studio 2005 ist die 8.0.
Offenbar waren die Entwickler bei M$ in diesem Fall einfach etwas weitsichtiger als sonst. :wink:
Gruß
Werner