This folder contains the layout pages and properties files used by Iron Speed Designer to generate your application’s source code files as well as the generated source code files. The folder name corresponds to the name you specified when creating a web page.
Each web page is based on an HTML layout page file and a properties file (XML). The subfolder contains this pair of files for each web page you created.
Each web page is comprised of a set of files: one ASPX file, zero or more ASCX (controls) files and code-behind source code files. The code-behind source code is generated as a pair of files: a file containing a customizable class and the class used to derive the customizable class. Once generated, the customizable class is never overwritten.
For example, if you create a web page called “AddOrder”, the following web files will be generated for it.
|
Add Record Page files |
|
AddOrderPage.aspx |
|
AddOrderPage.vb |
|
BaseAddOrderPage.vb |
|
Add Record Control files |
|
AddOrderUserControl.ascx |
|
AddOrderUserControl.vb |
|
BaseAddOrderUserControl.vb |