Code Behind File
Last updated
Was this helpful?
Last updated
Was this helpful?
Code behind files are the files with *.sqlx extension.
Code behind files are used to separate application code with HTML.
Each has a code behind file with the same name but with ".sqlx" extension.
Code behind files are automatically loaded and parsed just before the corresponding form file (frmx file) is parsed.
Mostly used to hold page specific variables and functions' definitions. For functions and variables related to business logic, please use .
Developer can;
write a special function in each code behind file in order to control page access.
write a special function to run code blocks funcafter form file parsing and before sending its content.