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 *** Small Stub Code to execute the generated page 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. *** This line provides Intellisense: Ensure your path includes this page's location LOCAL this as test_Page_WCSX of test_page.prg #ENDIF ***************************************************************** * OnLoad **************************************** FUNCTION OnLoad() ENDFUNC * Onload ENDDEFINE *# --- BEGIN GENERATED CODE BOUNDARY --- #* ******************************************************* *** Generated by WebPageParser.prg *** on: 18-10-2012 18:33:36 *** *** Do not modify manually - class will be overwritten ******************************************************* DEFINE CLASS "test_Page"_WCSX AS "test_Page" ...