Hello.
Is there any way to find out Windows Login Name in such browsers like Firefox?
I know that code below allows to do this in IE :
But as a know Fiferox does not support ActiveX objects.
Thanks.
Is there any way to find out Windows Login Name in such browsers like Firefox?
I know that code below allows to do this in IE :
Code:
function show_win_login()
{
var usern
var WshNetwork=new ActiveXObject("WScript.Network")
usern=WshNetwork.UserName;
alert(usern)
}
Thanks.
Comment