I am following your Help examples about Web Control Framework, I have a Helloworld.wc page, I registered WC like Web form extension into Visual Studio, I have the 3 example objects (lblMessage, txtName, btnSubmit), I have the Helloworld_page.prg with the following function before EndDefine Class:
FUNCTION btnSubmit_Click() this.lblMessage.Text = "Hello " + this.txtName.Text + ". Time is: " + TRANSFORM(DATETIME()) ENDFUNC
I have not errors, I see calls into VFP WC server window, however the lblMessage get never any value. It is like the Function has no functionality. However I see updating for Helloworld_Page.prg/fxp into GeneratedSourceFile path.
This is the situation when I double click on MyApp.exe web server through Windows Explorer.
Instead, when I open VFP, set default to wconnect\, open project and run the MyApp.exe web server, then all is right (everything works well).
Please could you explain why?
Thank you very much again