Designating Forum Topics

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Designating Forum Topics

    I've been working on a forum for awhile, and one of the main things I see in
    other apps, that eluded me so far is how to designate different statuses to
    topics that are new (since last visit), recently viewed things like that. I
    don't have a lot of experience with session variables, prehaps thats the key?

    Anyway, if anyone has some ideas on whats the best and most effecient way to
    accomplish this I'd appreciate it.

    thanks.

    gr81matt Guest

  2. Similar Questions and Discussions

    1. Where are all the topics in this forum?
      Where are all the topics in this forum? there should be like 1762 topics in the forum. But there are only 4 topic pages in this forum.
    2. designating a relative path using <cffile>
      I had a similar problem. After much expiramentation, I ended up using GetCurrentTemplatePath(). It's ugly but I blame Macromedia. :) <Cfset...
    3. Designating targets
      Is there a way to designates a buttons URL target to a frame (firework frame)? So if I have a nav button, can it open a webpage in one of my...
    4. Access to Help Topics
      AOL requires a customized browser, so you need to activate a "plain vanilla" version of Internet Explorer. You probably have one on your computer,...
    5. HTML mail tactics? Is there a way of designating a new line in ASP without a carriage return?
      > The HTML mails I'm trying to send have ASP code in them. hmmm.... the ASP code won't run, you know. If you mean what I think you mean, that...
  3. #2

    Default Re: Designating Forum Topics

    If you have some sort of login system, you can store information in the user
    record such as last date visited. Then when they return you can compare dates
    to show topics that are new to this user.

    You can do something similar with cookies - setting a last date visited on the
    user's computer so you can do the same kind of comparison.

    -Paul


    dempster 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