不用控件如何快速获取网页源码???(100分)

  • 主题发起人 主题发起人 koenemy
  • 开始时间 开始时间
好用的

uses全的
 
这狠难嘛。。我是一纯新手。
 
uses
IdBaseComponent, IdComponent, IdTCPConnection, IdTCPClient,IdHTTP;

function GetUrl(sUrl : String):String;
var
idHttp : TIDHttp;
begin
idHttp := TIDHttp.Create(nil);
try
Result := idHttp.Get(sUrl);
finally
idHttp.Free;
end;
end;
 
接受答案了.
 
后退
顶部