?? iwunit1.pas
字號(hào):
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.
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -