Specifies run-time include of a CSP file.
Synopsis
<CSP:INCLUDE>
Attributes
General Attributes
Attribute Description Value
PAGE  The csp page or file to include at this point.  A string. 
Description
The CSP:INCLUDE tag includes another csp page or file at runtime. If there is a problem with the include then it will call the error page to display the error, setting the parameter Error:IncludePage to the page it was trying to include.
You can use the CSP:INCLUDE tag to create components and then include these components within your CSP pages.
CSP:Include Example
The following runs the CSP page, includedpage.csp, to render a section of HTML within a container CSP page:
<CSP:INCLUDE PAGE="includedpage.csp?PARAM=ABC">
See Also
The server-side include directive: <!--##INCLUDE-->