HttpCookie.Expires Property
.NET Framework 4
Gets or sets the expiration date and time for the cookie.
Assembly: System.Web (in System.Web.dll)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Session cookie if Expires not set ?
The cookie remains a session cookie (a cookie that disappears when the user closes his browser) as long as the Expires property is not set, and becomes a persistent cookie once Expires property is set. And there is no way to reset to Expires property. Correct ?
$0$0
$0
$0ANSWER: According to the internals, setting Expires to DateTime.MinValue will "reset" it.$0