what is the default expiration time of a cookie

前端 未结 2 565
孤城傲影
孤城傲影 2021-01-07 16:13

By default what will be the expiration time of a cookie added using C# code?

    HttpCookie myCookie= new HttpCookie(\"myCookie\");
    myCookie.Value = txtC         


        
2条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-07 16:43

    20 minutes.
    In IIS, click on your website, and go to Session State. In the second box (Cookie Settings), you can change the time out(in minutes).

    enter image description here

提交回复
热议问题