111,092
社区成员




List<Cookie> TempCookies = GetAllCookies(cc);
foreach (Cookie i in TempCookies.ToArray())
{
InternetSetCookie("http://xxx.com", i.Name.ToString(), i.Value.ToString() + "+;expires=Sun,22-Feb-2029 00:00:00 GMT");
}
Process.Start("http://xxx.com");
return true;