i try to use a allready there PHPSESSID as a cookie. I got them freh from Firefox, so the ID is 100% correct, but the result is everytime the site for login, not the requested site.
String site = "";
WebClient client = new WebClient();
client.Headers.Add(HttpRequestHeader.Cookie, "PHPSESSID=fa90a8305a378254aefc371f875a86b2");
result = client.DownloadString(site);
what do I wrong?