Tip

Set cookie and get cookie

This code below allows you to set cookies and get cookie names by passing correct parameter.


Set a cookie for one year

<script language="javascript">

	var expires=new Date();
	expires.setTime(expires.getTime() + 24 * 60  * 60  * 30 * 1000);
	var expiryDate = expires.toGMTString(); 

function setcookie(name,value)
{
	document.cookie = name  +  "="  + value + "; expires=" + expiryDate 
+ ";path=/" + ";domain=www.khmer.org";

}

</script>

get cookie function

<script languate="javascript">
function GetCookie(name)
{
	var result= null;
	var mycookie=" " + 
        document.cookie + ";";
	var searchname= " " + name 
        + "=";
	var startOfCookie=
        mycookie.indexOf(searchname);
		var endOfCookie;
		if(startOfCookie != -1)
		{
			startOfCookie +=searchname.length;
			endOfCookie = mycookie.indexOf(";",startOfCookie);
			result=unescape(mycookie.substring
(startOfCookie,endOfCookie));
		}
		return result;

}
</script>

This was first published in November 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.