• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

coldfusion and cookies

New Here ,
Jan 14, 2007 Jan 14, 2007

Copy link to clipboard

Copied

I am trying to add a url link on some of the website pages that would implement a cookie on user's pc and that way their visit to the website could be tracked.
Does anyone know how to put that link on the website without the user needing to do any action on it or without intervening their website experience.

thanks!
TOPICS
Getting started

Views

293

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 14, 2007 Jan 14, 2007

Copy link to clipboard

Copied

The cfcookie tag can be used to set cookies. Details are in the cfml reference manual. If you don't have one, the internet does.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 14, 2007 Jan 14, 2007

Copy link to clipboard

Copied

I checked the cfcookie but I was confused since the link that i need to add on the page is

ex: http://test.com/test.gif?code=test

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Jan 14, 2007 Jan 14, 2007

Copy link to clipboard

Copied

LATEST
You aren't talking about tracking cookies, you're talking about a tracking 'image' with an appended query string. You could add that to any page using a standard XHTML image tag:

<img src=" http://test.com/test.gif?code=test" width="1" height="1" alt="tracking url" />

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation