Ver Mensaje Individual
  #12 (permalink)  
Antiguo 24/02/2005, 09:26
sqa212
 
Fecha de Ingreso: mayo-2003
Mensajes: 866
Antigüedad: 22 años
Puntos: 0
Esto te dice el numero que tiene en el registro el windows media player, en algun sitio he oido que lo llaman super cookies.
Espero que te sirva:
<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<OBJECT classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" ID=WMP WIDTH=1 HEIGHT=1>
</OBJECT>


<FORM name=out>
<INPUT size=50 name=GUID>

</FORM>

<SCRIPT>

function NSShow()

{

if(typeof(document.WMP) == "object")
{
document.out.GUID.value = document.WMP.GetClientID();
}
else
{
document.out.GUID.value = "None";
}
return;

}

if(navigator.appName == "Microsoft Internet Explorer")
{
if(typeof(document.WMP) == "object" &&
typeof(document.WMP.ClientID) == "string")
{
document.out.GUID.value = document.WMP.ClientID;
}
else
{
document.out.GUID.value = "None";
}
}
else
{
setTimeout("NSShow()", 100);
}
</SCRIPT>

</body>
</html>