我
我爱大咪咪
Unregistered / Unconfirmed
GUEST, unregistred user!
function THTTPClass.GetIeCookIE(Url:String;CookIE:string):Boolean;
var
lpvBuffer : array[0..1000] of Byte;
lpdwBufferLength : Cardinal;
begin
lpdwBufferLength := SizeOf(lpvBuffer);
Result := InternetGetCookie(PChar(Url),nil,@lpvBuffer,lpdwBufferLength);
if Result then
CookIE := PChar(@lpvBuffer);
end;
....
....
if GetIeCookIE(UserGetUrl,CookIEStr) then
_HTTP.Request.CustomHeaders.Text := 'cookie: '+CookIEStr;
这是参考网上的一个例子设置CookIE的,好像没什么用处
网站是asp.net开发的,各位有什么高招没有?请赐教
var
lpvBuffer : array[0..1000] of Byte;
lpdwBufferLength : Cardinal;
begin
lpdwBufferLength := SizeOf(lpvBuffer);
Result := InternetGetCookie(PChar(Url),nil,@lpvBuffer,lpdwBufferLength);
if Result then
CookIE := PChar(@lpvBuffer);
end;
....
....
if GetIeCookIE(UserGetUrl,CookIEStr) then
_HTTP.Request.CustomHeaders.Text := 'cookie: '+CookIEStr;
这是参考网上的一个例子设置CookIE的,好像没什么用处
网站是asp.net开发的,各位有什么高招没有?请赐教