In a WebSpeed project, you can compile SpeedScript (.htm or .html) files or CGI Wrapper (.w) files by:
Go to the Build project properties page in order to change the target destination for compiled (.r) files. By default, compiled files are written in the same directory as the source file.
To access the Build properties page, right-click on the project name in the Progress Explorer view. Select .
When you compile a .htm or .html file, a .w file is created by default. The .w file is necessary for debugging purposes (you cannot debug an HTML file in Progress Developer Studio for OpenEdge).
You can stop the generation of the .w file or change the directory where it is stored on the SpeedScript properties page.
To access the SpeedScript properties page, right-click on the project name in the Progress Explorer view. Select .
index.html: <!DOCTYPE html> <html> <head> <title>Hello World</title> </head> <body> <!--WSS DEF VAR l-hello AS CHAR NO-UNDO. { hello.i } --> <p>`l-hello`</p> </body> </html>
hello.html: <!--WSMETA NAME="wsoptions" CONTENT="include" --> <!--WSS l-hello = "Thanks". --> <p>Thanks for including me!</p>