Was ist die Standardablaufzeit eines Cookies?

Standardmäßig wird die Ablaufzeit eines mit C # -Code hinzugefügten Cookies angezeigt.

    HttpCookie myCookie= new HttpCookie("myCookie");
    myCookie.Value = txtCookie.Text;       
    // Add the cookie.
    Response.Cookies.Add(myCookie);