Not sure...
I can see that the generated code is hosed with quotes, but not sure why. I sure can't duplicate this and not sure why this would have occurred all of a sudden.
I recommend re-installing web connection and deleting all FXP files.
+++ Rick ---
I reinstalled WC 5.62 now, but unfortunately the anomaly remains :(
Do I have to reinstall also Visual Studio?
If a make a new web page in Visual Studio (for example test.wc), run WebPageParser from VFP, then try the web page in web application I get the error just from the line 5:
"Class definition TEST_PAGE_WCSX is not found "
I get that only on every NEW page, while the old pages run rightly.
What do I have to do?
#INCLUDE WCONNECT.H
PRIVATE __WEBPAGE
__WEBPAGE = CREATEOBJECT("test_Page_WCSX")
__WEBPAGE.Run()
RELEASE __WEBPAGE
RETURN
DEFINE CLASS test_Page as WWC_WEBPAGE OF WWC_WEBPAGE_FILE
#IF .F.
LOCAL this as test_Page_WCSX of test_page.prg
#ENDIF
FUNCTION OnLoad()
ENDFUNC
ENDDEFINE
DEFINE CLASS "test_Page"_WCSX AS "test_Page"
...