cfforward

Leads the request to a different page. This tag acts like the tag cflocation except that the relocation is done directly on the server.

  <cfforward template="page.cfm">

 cfforward( "page.cfm" );

Attribute Reference

template string
Required

A logical path to a CFML page.

Examples
Sample code using the cfforward tag


cfforward( "mypage.cfm" );

<cfforward template="mypage.cfm">

Fork me on GitHub