HttpResponse.AppendCookie Method
.NET Framework 2.0
This method supports the .NET Framework infrastructure and is not intended to be used directly from your code.
Adds an HTTP cookie to the intrinsic cookie collection.
Namespace: System.WebAssembly: System.Web (in system.web.dll)
The following example creates a new cookie named LastVisit, sets the value of the cookie to the current date and time, and appends the cookie to the current cookie collection. All cookies in the cookie collection are sent to the client in the Set-Cookie header with the HTTP output stream.
HttpCookie myCookie = new HttpCookie("LastVisit");
myCookie.set_Value(DateTime.get_Now().ToString());
get_Response().AppendCookie(myCookie);
var myCookie : HttpCookie = new HttpCookie("LastVisit") myCookie.Value = DateTime.Now.ToString() Response.AppendCookie(myCookie)
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: