HttpResponse.AppendCookie Method
.NET Framework 3.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)
Community Additions
ADD
Show: