Hi I have created a new Intraweb (standalone) app with two forms (blueform and greenform) and have given them URL aliases in the OnConfig handler of the server controller using:
void __fastcall TIWServerController::IWServerControllerBaseConfig(TObject *Sender)
{
TGreenForm::SetURL ("/", "Green.html") ;
TBlueForm::SetURL ("/", "Blue.html") ;
}
The green form is set as the main form
If I try to start a session from a browser with the URL: http://127.0.0.1:8888/Blue.html I don't get the blue form, I get the green form. How can I fix this please?
Once the session has been started, the URL does work
I have Intraweb 14.2.7 Ultimate edition, and am using C++Builder 10.2 update 3
Thanks
Ian
void __fastcall TIWServerController::IWServerControllerBaseConfig(TObject *Sender)
{
TGreenForm::SetURL ("/", "Green.html") ;
TBlueForm::SetURL ("/", "Blue.html") ;
}
The green form is set as the main form
If I try to start a session from a browser with the URL: http://127.0.0.1:8888/Blue.html I don't get the blue form, I get the green form. How can I fix this please?
Once the session has been started, the URL does work
I have Intraweb 14.2.7 Ultimate edition, and am using C++Builder 10.2 update 3
Thanks
Ian