Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道如何为 cookie 添加天数,但我不确定如何使用 ASP.Net 和 C# 创建一个在当天午夜过期的 cookie。提前感谢您的帮助。
这应该这样做:
Response.Cookies["Cookie_SessionID"].Expires = DateTime.Today.AddDays(1);