Navigation hyperlinks...

K

KHV

I want to control some hyperlinks in my navigation bar to be visible or
dissapear at my request... For example: One link, links to a Login page.
After the visitor logs in, I want the link to my 'Login.asp' page to
dissapear, but few other links to other 'member' pages to turn visible...
Can this be done using ASP or must I use other methods ?

Thank's
Kjartan
 
J

Jens Peter Karlsen[FP-MVP]

When they have logged in, just send them to a page with the navigation
you want.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: KHV [mailto:[email protected]]
Posted At: 05. august 2004 04:58
Posted To: microsoft.public.frontpage.programming
Conversation: Navigation hyperlinks...
Subject: Navigation hyperlinks...


I want to control some hyperlinks in my navigation bar to be visible or
dissapear at my request... For example: One link, links to a Login page.
After the visitor logs in, I want the link to my 'Login.asp' page to
dissapear, but few other links to other 'member' pages to turn
visible...
Can this be done using ASP or must I use other methods ?

Thank's
Kjartan
 
K

KHV

I want the link to my Login page to be disabled on my home page (and few
other pages) if the visitor browses to them after visiting the Login page
and log in...
 
J

Jens Peter Karlsen[FP-MVP]

Then you can't use the navbar but must create your own solution. You can
use JavaScript for this with a cookie. Set a cookie when they log on
and depending of if the cookie is there, you display the link or not.
Set a reasonable timeout on the cookie.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: KHV [mailto:[email protected]]
Posted At: 05. august 2004 19:01
Posted To: microsoft.public.frontpage.programming
Conversation: Navigation hyperlinks...
Subject: Re: Navigation hyperlinks...


I want the link to my Login page to be disabled on my home page (and few
other pages) if the visitor browses to them after visiting the Login
page and log in...

Jens Peter Karlsen said:
When they have logged in, just send them to a page with the navigation
you want.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: KHV [mailto:[email protected]] Posted At: 05. august 2004
04:58 Posted To: microsoft.public.frontpage.programming
Conversation: Navigation hyperlinks...
Subject: Navigation hyperlinks...


I want to control some hyperlinks in my navigation bar to be visible
or dissapear at my request... For example: One link, links to a Login page.
After the visitor logs in, I want the link to my 'Login.asp' page to
dissapear, but few other links to other 'member' pages to turn
visible...
Can this be done using ASP or must I use other methods ?

Thank's
Kjartan
 
K

KHV

Jens,
Thank's for your reply. I did find another solution to this. Instead for
using one navbar with all the links. I use one navbar + two custom link
bars. Then using ASP, I switch the link bars on/off to make the links
visible or dissapear...

Jens Peter Karlsen said:
Then you can't use the navbar but must create your own solution. You can
use JavaScript for this with a cookie. Set a cookie when they log on
and depending of if the cookie is there, you display the link or not.
Set a reasonable timeout on the cookie.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: KHV [mailto:[email protected]]
Posted At: 05. august 2004 19:01
Posted To: microsoft.public.frontpage.programming
Conversation: Navigation hyperlinks...
Subject: Re: Navigation hyperlinks...


I want the link to my Login page to be disabled on my home page (and few
other pages) if the visitor browses to them after visiting the Login
page and log in...

Jens Peter Karlsen said:
When they have logged in, just send them to a page with the navigation
you want.

Regards Jens Peter Karlsen. Microsoft MVP - Frontpage.

-----Original Message-----
From: KHV [mailto:[email protected]] Posted At: 05. august 2004
04:58 Posted To: microsoft.public.frontpage.programming
Conversation: Navigation hyperlinks...
Subject: Navigation hyperlinks...


I want to control some hyperlinks in my navigation bar to be visible
or dissapear at my request... For example: One link, links to a Login page.
After the visitor logs in, I want the link to my 'Login.asp' page to
dissapear, but few other links to other 'member' pages to turn
visible...
Can this be done using ASP or must I use other methods ?

Thank's
Kjartan
 
Top