Back
renderPartial()
Instructs the controller to render a partial when it's finished processing the action.
// Render the partial `_comment.cfm` located in the current controller's view folder
renderPartial("comment");
// Render the partial at `views/shared/_comment.cfm`
renderPartial("/shared/comment");
Copied!