你好,我想请教下DELPHI获取网页源码的代码
你好,我想请教下DELPHI获取网页源码的代码
日期:2010-09-04 10:01:29 人气:2
使用 IDHTTP 控件:
var
s: string;
const
URL = 'http://www.baidu.com';
begin
s := Idhttp1.Get(URL);
ShowMessage(s);//s 就是你需要的
end;
你好,我想请教下DELPHI获取网页源码的代码