02-25-2020, 05:41 PM
Hi!
There is an error in versions after iw15.1.12.
Stand alone application: OK.
IIS + ISAPI.DLL + Virtual directory: calling the new form does not work in Async events. The new URL does not contain the virtual directory name.
Demo:
iw15.1.12: http://95.140.46.153/iw15_1_12
iw15.1.15: http://95.140.46.153/iw15_1_15
[url=http://95.140.46.153/iw15_1_15][/url]
Code:
procedure TIWForm1.IWButton1AsyncClick (Sender: TObject; EventParams: TStringList);
var F: TIWForm2;
begin
F = TIWForm2.Create (WebApplication);
F.Show;
end;
There is an error in versions after iw15.1.12.
Stand alone application: OK.
IIS + ISAPI.DLL + Virtual directory: calling the new form does not work in Async events. The new URL does not contain the virtual directory name.
Demo:
iw15.1.12: http://95.140.46.153/iw15_1_12
iw15.1.15: http://95.140.46.153/iw15_1_15
[url=http://95.140.46.153/iw15_1_15][/url]
Code:
procedure TIWForm1.IWButton1AsyncClick (Sender: TObject; EventParams: TStringList);
var F: TIWForm2;
begin
F = TIWForm2.Create (WebApplication);
F.Show;
end;