📄 iwunit1.~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+'<br>'+
'PathInfo='+RWebApplication.Request.PathInfo+'<br>'+
'From='+RWebApplication.Request.From+'<br>'+
'Host='+RWebApplication.Request.Host;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -