⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iwunit1.pas

📁 IntraWeb.Develop.Sample
💻 PAS
字号:
unit IWUnit1;
{PUBDIST}

interface

uses
  IWAppForm, IWApplication, IWTypes, Classes, Controls, IWControl,
  IWCompLabel;

type
  TformMain = class(TIWAppForm)
    IWLabel1: TIWLabel;
    procedure IWAppFormCreate(Sender: TObject);
  public
  end;

implementation
{$R *.dfm}

uses
  ServerController, IWInit, HTTPApp;

procedure TformMain.IWAppFormCreate(Sender: TObject);
begin
  iwLabel1.Caption:='URL='+RWebApplication.Request.URL+' '+
                    'PathInfo='+RWebApplication.Request.PathInfo+' '+
                    'From='+RWebApplication.Request.From+'  '+
                    'Host='+RWebApplication.Request.Host;
end;

end.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -