GetPageContext()
Gets the current PageContext object that provides access to page attributes and configuration, request and response objects.
GetPageContext( );
Returns: any
This function does not take any arguments.
Examples
echo("Click to expand");
pc = getPageContext();
dump(var=pc, label="PageContext", expand=false);
dump(var=pc.getCFMLFactory(), label="CFMLFactory", expand=false);
dump(var=pc.getCFMLFactory().getEngine(), label="Engine",expand=false);
if( listFirst(server.lucee.version,".") lte 5)
dump(var=pc.getCFMLFactory().getConfig(), label="Config",expand=false);
else
dump(var=pc.getCFMLFactory().getConfigServer(), label="ConfigServer",expand=false);
dump(var=pc.getCFMLFactory().getScopeContext(), label="ScopeContext",expand=false);
See also
- Debugging
- Java
- Server
- GetContextInfo()
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)