Quote:
quote:Originally posted by DZukiewicz
Response.Redirect points away from your site and back into it. The server will think its a new user and will give you a new session.
|
That is not true. Assuming that you have session maintenance configured, any new request to the browser, whether it comes from a user click action on an <a> tag or from a Response.Redirect, will carry with it session identification in the form of the session ID in the cookie that is sent with each request.
-
Peter