ISessionIDManager.SaveSessionID Method

Saves a newly created session identifier to the HTTP response.

Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)

void SaveSessionID (
	HttpContext^ context, 
	String^ id, 
	[OutAttribute] bool% redirected, 
	[OutAttribute] bool% cookieAdded
)
void SaveSessionID (
	HttpContext context, 
	String id, 
	/** @attribute OutAttribute() */ /** @ref */ boolean redirected, 
	/** @attribute OutAttribute() */ /** @ref */ boolean cookieAdded
)
Not applicable.

Parameters

context

The current HttpContext object that references server objects used to process HTTP requests (for example, the Request and Response properties).

id

The session identifier.

redirected

When this method returns, contains a Boolean value that is true if the response is redirected to the current URL with the session identifier added to the URL; otherwise, false.

cookieAdded

When this method returns, contains a Boolean value that is true if a cookie has been added to the HTTP response; otherwise, false.

The SaveSessionID method is called by the SessionStateModule object during the System.Web.HttpApplication.AcquireRequestState event. The SaveSessionID method stores the session identifier either in the URL (when cookieless session state is used) or in a non-expiring session cookie.

If it is possible that the value returned from your CreateSessionID implementation contains characters that are not valid in an HTTP response or request, you should use the UrlEncode method to encode the session-identifier value in your SaveSessionID method implementation and the UrlDecode method to decode the session-identifier value in your GetSessionID method implementation.

The following code example shows a partially implemented GetSessionID method. If your custom session-ID manager supports cookieless session identifiers, you will need to implement a solution for sending and retrieving session identifiers in the URL, such as an ISAPI filter.

No code example is currently available or this language may not be supported.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: