Re: Identify Unread Posts in Forum-like Application

Tech-Archive recommends: Repair Windows Errors & Optimize Windows Performance



Whether a document is read or not is user-specific. That is, each user will
have read or not any number of documents. Therefore, the data pertaining to
what documents are read or not must be maintained and stored persistently
(over a period of several days to who knows how long) in a user-specific
manner. In a web application, you have several options for this. One is to
use cookies. Cookies are fairly reliable, and their expiration can be
controlled, but they can only store a limited amount of data. Depending on
how much data you need to store, this may or may not be a viable solution.

Another is to use a server database. A server database can store a lot of
data, and you can also control expiration in it, programmatically. You would
still need to use cookies if the users are logging on anonymously, or use a
login procedure to view your forums, which could link up the user to their
server-side data store.

The third solution is to create some kind of downloadable component, such as
an ActiveX Control, which creates a client-side application for using the
forums. This application could maintain a client-side database with any
user-specific information you want in it. The drawback to this is that your
users may not want to install it, may not trust it, or may not use the same
computer when logging on.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
If you push something hard enough,
it will fall over.
- Fudd's First Law of Opposition

"Cincin" <Cincin@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:C4349420-633C-4906-8EFE-5A70C3945EAE@xxxxxxxxxxxxxxxx
> We were building this forum application and we stumble on how to identify
> unread post.
> One thing would be to keep in the database what an user have seen but it
> doesn't seem doable because of the possible large number of users/posts
> and
> also anonymous users.
> Do you have an idea on how this can be done, what options do I have to do
> this?
>
> Thanks


.



Relevant Pages

  • defining non-specific field names in a table
    ... transaction and the peripherals are different from store to store. ... control where i use dlookup with the criteria that > the previous id ... Dim holdPlace As Integer ... For Each currControl In Me.Controls ...
    (microsoft.public.access.tablesdbdesign)
  • Re: OT: A Shopping Story
    ... "No, got it under control". ... Now, imagine if you will, the mom in the store had been dealing ... I also believe that those parents probably have ... a poor set of limits for themselves - but just my opinion. ...
    (sci.med.transcription)
  • Re: Yes/No and default values
    ... question becomes, then, how do I store N/A? ... >Use of a boolean field goes far beyond checkboxes, ... >easy to use your option group with it, ... >> control to choose Yes), and the absence of a check mark ...
    (microsoft.public.access.gettingstarted)
  • RE: combo boxes(why cant this stuff be simple?)
    ... of just creating a series of text boxes to input the info. ... table to store specifically that information. ... I tried to bind the Control Source property of the text ... rethink your database design. ...
    (microsoft.public.access.forms)
  • Re: Problems with date-expression in Acces 97
    ... ask yourself if you really need to store the number of weeks. ... If it can be calculated on the basis of other stored data (in this case, ... its ControlSoure property for the calculation expression. ... The ControlSource property of the control should be set to the name of the ...
    (microsoft.public.access.forms)