OT - Cookie to register user origin

L

Larry

I have a sub-web that is referred to from 3 different websites. I need to
make a common exit point by saving the user's origin in a cookie and then
exit to the oirigin onclick of the Back button. I cannot seem to find the
Parameters for cookies to get the particular field I need to save. Can
anyone help?
Larry
 
L

Larry

Went there, looked around and nothing seemed what I am looking for so went
to the Message Board to post an inquiry......last entry was April 2005 so I
didn't bother..
 
S

Stefan B Rusynko

See http://www.w3schools.com/js/js_cookies.asp

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Went there, looked around and nothing seemed what I am looking for so went
| to the Message Board to post an inquiry......last entry was April 2005 so I
| didn't bother..
|
| | > Try Cookie Central for examples.
| > http://www.cookiecentral.com/demomain.htm You could also use ASP -
| > server-side scripting, to do this as well.
| >
| >
| > | >>I have a sub-web that is referred to from 3 different websites. I need to
| >>make a common exit point by saving the user's origin in a cookie and then
| >>exit to the oirigin onclick of the Back button. I cannot seem to find the
| >>Parameters for cookies to get the particular field I need to save. Can
| >>anyone help?
| >> Larry
| >>
| >
| >
|
|
 
L

Larry

Thanks Mr. Rusynko but I have already been there as well. I understand how
cookies work. What I need is a pointer to the parameters that can be used
with a cookie, specifically how to save the url where the page viewer came
from so he/she can be returned there on exit.
 
T

Thomas A. Rowe

If you are hosted on a server that supports ASP, then store the referrer value in a session cookie
and use the session as value for the return URL link.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


Larry said:
Thanks Mr. Rusynko but I have already been there as well. I understand how cookies work. What I
need is a pointer to the parameters that can be used with a cookie, specifically how to save the
url where the page viewer came from so he/she can be returned there on exit.

Stefan B Rusynko said:
See http://www.w3schools.com/js/js_cookies.asp

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
_____________________________________________


| Went there, looked around and nothing seemed what I am looking for so went
| to the Message Board to post an inquiry......last entry was April 2005 so I
| didn't bother..
|
| | > Try Cookie Central for examples.
| > http://www.cookiecentral.com/demomain.htm You could also use ASP -
| > server-side scripting, to do this as well.
| >
| >
| > | >>I have a sub-web that is referred to from 3 different websites. I need to
| >>make a common exit point by saving the user's origin in a cookie and then
| >>exit to the oirigin onclick of the Back button. I cannot seem to find the
| >>Parameters for cookies to get the particular field I need to save. Can
| >>anyone help?
| >> Larry
| >>
| >
| >
|
|
 
Top