how many times it is cilcked?

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default how many times it is cilcked?

    myPage1 <a href='hisPage.html' target='_blank'>hisPage</a> I have the code
    above in myPage.cfm. I didn't make hisPage.html. I like to know how many times
    the link to his Page is clicked through myPage1.cfm. Let's look at the
    following code. myPage2.cfm <a href='counter.cfm'
    target='_blank'>hisPage</a> counter.cfm <cfquery datasource='DSN'
    name='counter'> select counter from my table </cfquery> <cfquery
    datasource='DSN'> insert into myTable (counter) values (
    #myselect.counter+1#) </cfquery> <cflocation url='hisPage.html'> If I make two
    files like the above, I can check how many times the link is clicked. But http
    ://www.mySite.com/counter.cfm instead of 'http ://www.hisSite.com/hisPage.html
    will be displayed on the status bar of the bottom. How can I check the
    counting with normal displaying on the status bar?

    joonstar Guest

  2. Similar Questions and Discussions

    1. Is Time Between 2 other times
      There is an obvious solution to this but I can't figure it out: I need to know whether the current time is between midnight and 8am. Thanks
    2. Webservice times out?
      Hi, I have built a WebService that creates an class that generates a lot of Crystal Reports. My class works fine and the webservice works fine...
    3. Loading Times
      Hello. I've got a projector that I'm burning to CD, but a problem I have is the loading speed. There seems to be a long delay before anything...
    4. Trying to read a FAQ - times out.
      Why does your site time out when trying to read the FAQ's at:...
    5. UTC Times from vb script
      http://www.aspfaq.com/2218 -- Aaron Bertrand, SQL Server MVP http://www.aspfaq.com/ Please reply in the newsgroups, but if you absolutely...
  3. #2

    Default Re: how many times it is cilcked?

    This will be a javascript issue. I would recommend checking here:
    [url]http://forums.webdeveloper.com[/url] ---> click Javascript You would need to add a
    javascript code to hte link like: onmouseover='window.status= blah blah....
    Not really sure but i know that site above has the answer.

    Vbprog40 Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139