-2
我創建了一個從某個網站獲取所有cookie的應用程序。出於某種原因,我無法從網站獲取所有cookies,這個問題是否可以解決?C#沒有從網站獲取所有的cookie
listBox1.Items.Clear();
try
{
string url = textBox1.Text;
HttpWebRequest myCall = (HttpWebRequest)WebRequest.Create(url);
myCall.CookieContainer = new CookieContainer();
response = (HttpWebResponse)myCall.GetResponse();
myCall.AllowAutoRedirect = true;
foreach (Cookie cookie in response.Cookies)
{
listBox1.Items.Add(cookie.Name);
listBox1.Items.Add(cookie.Value);
}
myCall.Abort();
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
請顯示HTTP響應和你回來的值。 –