How does the Active Topics work? On a site I am working on www.feedbackdatabase.com I want to doa page where it would display all Topics where date > Login Date. Then when they log out it will clear cause the dates change. I do not use Snitz Date i use the now() built in asp function. on www.feedbackdatabase.com/search.asp I have ordered by date but if the active topics thing works out i could put like an image next to the "topics" that havn't been read yet. Any help is appreaciated
Also how do i disable the submit button after it is clicked in a regular form.?
To do like the active topics you need to record the last here date. Then create a link/button/image that when they clcked on it it will update the lastheredate to the current date and time. When a user log's in you can either set it to the last logged in date or the last time they clicked the lastheredate icon. Hopefully that will help you get it started
SO like a unread topic kinda thing. So right before the ClearCookies() Function i can reset the Last_Here_date and have in a section if Last_here_date < TOPIC_DATE then display image 1 else display image 2 end if and then inside the topic If Last_here_date < TOPIC_DATE then Update .. Thats where i get lost how to make it so that user doesn't see it BUT will still be able to view the other Topics that have not been answered. I was thinking haveing M_READ in TOPICS and each user that reads it has their Member_ID inserted but that would be big if lots of users read it. And then how does it work when someone replies. Currently i have a input form that submits to a page where it INSERTS into either SITE_TOPICS or SITE_TOPICS_R so icannot figure out how to work that. :)