del

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Memo1: TMemo;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

uses MsXML;

procedure TForm1.Button1Click(Sender: TObject);
var
  req: IXMLHTTPRequest;
begin
  req := CoXMLHTTP.Create; //较早的版本或许是 req := CoXMLHTTPRequest.Create;
  req.open(\'Get\', \'http://del.cnblogs.com\', False, EmptyParam, EmptyParam);
  req.send(EmptyParam);
  Memo1.Text := req.responseText;
end;

end.

分类:

技术点:

相关文章:

  • 2021-11-27
  • 2021-11-27
  • 2021-12-28
  • 2021-08-20
  • 2022-12-23
  • 2022-12-23
  • 2022-01-06
  • 2021-12-28
猜你喜欢
  • 2021-09-06
  • 2022-12-23
  • 2021-09-04
  • 2021-11-27
  • 2021-11-26
相关资源
相似解决方案