System.Web.Security.FormsAuthentication.SetAuthCookie Method

Creates an authentication ticket for the supplied user name and adds it to the cookies collection of the response, or to the URL if you are using cookieless authentication.

Syntax

public static void SetAuthCookie (string userName, bool createPersistentCookie)

Parameters

userName
The name of an authenticated user. This does not have to map to a Windows account.
createPersistentCookie
true to create a persistent cookie (one that is saved across browser sessions); otherwise, false.

Remarks

The FormsAuthentication.SetAuthCookie(string, bool) method adds a forms-authentication ticket to either the cookies collection, or to the URL if FormsAuthentication.CookiesSupported is false. The forms-authentication ticket supplies forms-authentication information to the next request made by the browser. With forms authentication, you can use the FormsAuthentication.SetAuthCookie(string, bool) method when you want to authenticate a user but still retain control of the navigation with redirects.

Requirements

Namespace: System.Web.Security
Assembly: System.Web (in System.Web.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0