blob: b07e113672b96a53bf106eb5515bbc1842aa26dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html>
<head>
<title>This page sets a cookie</title>
<script type="text/javascript">
function makeCookie()
{
expireAt = new Date;
expireAt.setMonth(expireAt.getMonth() + 3);
username = "Good";
document.cookie = "name=" + username + ";expires=" + expireAt.toGMTString()
}
</script>
</head>
<body onLoad="makeCookie()">
</body>
</html>
|