I am trying to understand how some cookies were created. The application that I am looking at has this simple function to create a cookie
function setCSubjectId (value)
{
setCookie ("CSUBJECTID", value, null, "/");
}
My confusion is that I am reading in tutorials that the statement document.cookie is used to create cookies.
I have search this entire application but do not see this statement.
So is setCookie and implied function that is accessible using javascript
Howard Hardaway
function setCSubjectId (value)
{
setCookie ("CSUBJECTID", value, null, "/");
}
My confusion is that I am reading in tutorials that the statement document.cookie is used to create cookies.
I have search this entire application but do not see this statement.
So is setCookie and implied function that is accessible using javascript
Howard Hardaway