It sounds like what you're talking about is when a link they have visited,
has the appropriate colour to indicate that they've already clicked on it.
e.g. the default link colour is blue, a visited link is purple. Links have
nothing to do with sessions. So if you've got multiple users using the
same computer, if user A has clicked a link, it will have the 'visited'
colour applied to it for user B's login too.
just use some stylesheets to set the different link colours to all be the
same:
A {
color: #E40465;
font : bold 12px Verdana, Arial, sans-serif;
text-decoration : none;
}
A:LINK {
color : #E40465;
text-decoration : underline;
background-color : transparent;
}
A:VISITED {
color : #E40465;
text-decoration : underline;
background-color : transparent;
}
A:ACTIVE {
color : #E40465;
text-decoration : none;
background-color : transparent;
}
A:HOVER {
color : #E40465;
text-decoration : underline;
background-color : transparent;
}
etc.
Duncan Cumming
IT Manager
http://www.alienationdesign.co.uk
mailto:[EMAIL PROTECTED]
Tel: 0141 575 9700
Fax: 0141 575 9600
Creative solutions in a technical world
----------------------------------------------------------------------
Get your domain names online from:
http://www.alienationdomains.co.uk
Reseller options available!
----------------------------------------------------------------------
----------------------------------------------------------------------
"(s) Fiona Tope"
<[EMAIL PROTECTED] To: <[EMAIL PROTECTED]>
uth.ac.uk> cc:
Subject: [ cf-dev ] Session
Management!?
08/02/2004 20:17
Please respond to dev
Hi ALL,
This is my first posting and I am a beginner of developing website with
ColdFusion. Is there a simple way to re-set a session everytime a user
login to browse a website. My website doesn't seem to distinguish
different user login id and password, the hyperlink in the webpage still be
highlighted from the previous user when a new user login detail is used.
Please advise.
Thanks,
Fiona
--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]