|
楼主 |
发表于 2015-1-28 08:39:34
|
显示全部楼层
飞哥 ,我知道大部分都一样,但是我做的京东那个 他是2个cookice来回换 ,我用
private static string GetCookieString(string url)
{
// Determine the size of the cookie
int datasize = 256;
StringBuilder cookieData = new StringBuilder(datasize);
if (!InternetGetCookieEx(url, null, cookieData, ref datasize, 0x00002000, IntPtr.Zero))
{
if (datasize < 0)
return null;
// Allocate stringbuilder large enough to hold the cookie
cookieData = new StringBuilder(datasize);
if (!InternetGetCookieEx(url, null, cookieData, ref datasize, 0x00002000, IntPtr.Zero))
return null;
}
return cookieData.ToString();
}
这个方法返回的cookice , 但是 好像不太好用 纠结 |
|