Help - how to have email URL link start new session?



In our .NET 1.1 ASP.NET application, I'm noticing some behavior that I
would like to change. If I open a web browser and manually copy and
paste a URL, then I get a new session ID (I check it by entering
javascript:document.cookie in the URL field to get the cookies for the
page). However, if I instead click on the same URL in an email link,
the browser that is opened will reuse the session ID if another browser
is already open to the application. Instead, I would like the click on
the URL to allow any existing session to remain but force a new session
for the newly opened browser. Is there anything I can setup in my
application to force this? In stepping through the code, I've noticed
that the Session_start event of the Global.asax is not fired when
clicking the URL in the email - in the web.config we have setting of
cookieless as false, and it needs to stay that way (I think the
SessionID resulting from the email URL click is pulled from the
cookie).

If anyone has suggestions on how to force the email URL click to create
a new session without closing any existing session, I would really
appreciate it.

Thanks in advance.

.



Relevant Pages

  • Re: Attempt to de-mystify AJAX
    ... >>maintaining a session via URL is not a problem. ... >> around cookies and JS, but it seems to be tough. ... >> as needed back to the server. ... but as I mentioned before - a non-dynamic request by the browser can ...
    (comp.databases.pick)
  • Re: What is URL rewriting?
    ... URL rewriting is the option when the client browser doesn't accept ... browser doesn't accept cookies. ... user information is usually stored as session object. ... so that the user agent can send that ID back on its next request. ...
    (comp.lang.java.programmer)
  • Re: Getting around a weird browser cookie bug...
    ... very unusual bug with their browser ... and start using it like normal but all of a sudden the browser ... to stop storing cookies, so session storage goes out the window.. ...
    (comp.lang.php)
  • Re: Multiple copies of webbrowser control and site logins
    ... "Joe" wrote in message ... > I suppose, given what you said above, if the cookies are for the session ... So there must be a way the browser sends this info to ... cookies before you started you would have to delete them as you go, ...
    (microsoft.public.inetsdk.programming.webbrowser_ctl)
  • Re: Getting around a weird browser cookie bug...
    ... very unusual bug with their browser ... and start using it like normal but all of a sudden the browser ... to stop storing cookies, so session storage goes out the window. ...
    (comp.lang.php)

Loading