Vai al contenuto

In Dynamic ASP-like pages

You can compose the pages by using a language similar to ASP (ASPlike). The mechanism is similar to the one used by ASP (Active Server Page) servers, and lets you create dynamic pages by using keywords and with a specific syntax in the HTML code of each page.The page must have the asp and not the html extension.The default page, i.e., the first page sought unless specified otherwise, is home.aspFor example, when a client PC requests an asp page using Chrome, the web server returns an html page by replacing the keywords on the request page, resulting in the associated processing.The commands must have the following syntax:<% commands_asp; %>;After extracting the commands_asp command, the server processes it and then returns the processed code in place of the command.Below there is a complete description of all commands implemented. An example of most of this commands are inserted on a demo page index.asp present on the target system.IMPORTANTStandard Microsoft ASP is not available. Only the custom implementation of commands described in this manual is supplied. SSi commands are not implemented either.The user is responsible for reloading the page to see updates. The page can be loaded manually or with the specific Javascript code.