Marcos
|
| Posted: 07/30/2002, 9:43 AM |
|
I have a field of the MS-Access with the "Informative" name and every time
that to open default.asp, a different information should be shown.
|
|
|
 |
donb
|
| Posted: 08/01/2002, 12:00 PM |
|
Just a guess, but it sounds like you want to have something like "tip of the
day" appear, either randomly or in sequence. You'll want to create the
table of "Informative" items with a key that is a number. Then you can use
a random-number generator routine to produce a key at random. Or, you can
ctore a cookie for the user that remembers the last one displayed, so you
can show the next one in sequence. I suppose if you have security enabled
in your app, then the database table that stores userid and password could
also store the value (instead of using a cookie).
I'll leave the details of writing cookies and random-number generators to
you. Ttry developer.netscape.com for help there.
"Marcos" <datafigi@swi.com.br> wrote in message
news:ai6fo7$5sp$1@news.codecharge.com...
> I have a field of the MS-Access with the "Informative" name and every time
> that to open default.asp, a different information should be shown.
>
>
|
|
|
 |
|