如何以编程方式清理Internet Explorer饼干?
是否有一些Windows API函数可以做到这一点?
实际上,我明白了!
在Windows API中,您有一个函数来创建调用的cookie InternetSetCookie
,您可以像这样使用它:
InternetSetCookie("http://teste.com", NULL, "name = value; expires = Sat,01-Jan-2020 00:00:00 GMT");
但是,如果你想删除cookie而不是创建它,你只需要在过去的某个地方设置过期字段,如下所示:
InternetSetCookie("http://teste.com", NULL, "name = value; expires = Sat,01-Jan-2000 00:00:00 GMT");
有关它的更多信息,请参阅Managing Cookies.