tags:

views:

62

answers:

1

How to set path custom path for cookies

+3  A: 

Just set HttpCookie.Path property.

public HttpCookie CreateCookie(string name, string value, string path)
{
    var cookie = new HttpCookie(name, value);

    cookie.Path = path;

    return cookie;
}
BrunoLM