Hola a todos,
me gustaría saber si os funciona este código. Es simplemente una prueba de crear una cookie con unos datos fijos.
Os crea la cookie con esos datos?
El código es este:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script>
function getCookie(name){
var cname = name + "=";
var dc = document.cookie;
if (dc.length > 0) {
begin = dc.indexOf(cname);
if (begin != -1) {
begin += cname.length;
end = dc.indexOf(";", begin);
if (end == -1) end = dc.length;
return unescape(dc.substring(begin, end));
}
}
return null;
}
function setCookie(name, value, expires, path, domain, secure) {
document.cookie = name + "=" + escape(value) +
((expires == null) ? "" : "; expires=" + expires.toGMTString()) +
((path == null) ? "" : "; path=" + path) +
((domain == null) ? "" : "; domain=" + domain) +
((secure == null) ? "" : "; secure");
}
function delCookie (name,path,domain) {
if (getCookie(name)) {
document.cookie = name + "=" +
((path == null) ? "" : "; path=" + path) +
((domain == null) ? "" : "; domain=" + domain) +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}
}
function prueba() {
//set to expire on February 9, 2007 at 0:0:0
//var expiration = new Date();
//expiration.setTime(1171018800013);
//set this cookie
setCookie('trasporte', 'TU33241234324', expiration, '/', 'TU0000000001');
//get this cookie
//getCookie('trasporte');
//delete this cookie
//delCookie('trasporte', '/carpeta', 'TU0000000001');
}
</script>
</head>
<body onLoad="prueba()">
</body>
</html>
Muchas gracias de antemano y saludos al foro,
Mickeyzgz