My First Handler & View
coldbox create handler name="hello" actions="index"# With rewrites enabled
http://localhost:{port}/hello/index
# With no rewrites enabled
http://localhost:{port}/index.cfm/hello/indexHandler Code
component{
/**
* Default Action
*/
function index( event, rc, prc ){
event.setView( "hello/index" );
}
}Executing Events
My First Virtual Event
Last updated
Was this helpful?