473,325 Members | 2,342 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,325 software developers and data experts.

MultipleWebsites\Sessions

gh
We have a static website created with dreamweaver and a database website
created in ASP.NET. Both sites have a the same url name, but one ends
with .org and the other is a .com. The user gets to the ASP.NET site by
ckicking a link on the static site. We have a grid that displays
images, when the user clicks an image we would like to open up a page,
it will be on the static site, in a different browser window. When the
user is done viewing the page they will close it and return back to the
grid, to select any items they want to purchase. Are we going to be
loosing our ASP.NET session by opening up the other site in a different
browser?

Thanks

Feb 28 '06 #1
2 837
No

"gh" <gh@attt.net> wrote in message
news:e1**************@TK2MSFTNGP12.phx.gbl...
We have a static website created with dreamweaver and a database website
created in ASP.NET. Both sites have a the same url name, but one ends
with .org and the other is a .com. The user gets to the ASP.NET site by
ckicking a link on the static site. We have a grid that displays
images, when the user clicks an image we would like to open up a page,
it will be on the static site, in a different browser window. When the
user is done viewing the page they will close it and return back to the
grid, to select any items they want to purchase. Are we going to be
loosing our ASP.NET session by opening up the other site in a different
browser?

Thanks

Mar 1 '06 #2
> We have a static website created with dreamweaver and a database website
created in ASP.NET. Both sites have a the same url name, but one ends with
.org and the other is a .com. The user gets to the ASP.NET site by ckicking
a link on the static site. We have a grid that displays images, when the
user clicks an image we would like to open up a page, it will be on the
static site, in a different browser window. When the user is done viewing
the page they will close it and return back to the grid, to select any items
they want to purchase. Are we going to be loosing our ASP.NET session by
opening up the other site in a different browser?

Thanks


The session cookie is bound to the exact server name, so you will not
lose that. But: if the user remains on that static site for longer than
the regular session timeout (default: 20 minutes) the cookie will still
be there, but the (server side) session will have expired.
That is, if there is no activity (of that user) on the aspnet server in
the meantime (this would reset the timeout).

Hans Kesting
Mar 1 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.