Runtime tools : Channels components : HTML Channel : Concepts : Navigation and business logic : HTML flow processor : Final state pages
  
Final state pages
When a processor finishes, the exit event name specified in the typeIdInfo attribute of the final state is passed to the parent processor to move the flow further on. However, if the processor has no parent, then it displays the final state page. This page can be the home page of the application, the home page of the session, or it can be the generic home page. The final page is determined by the following process:
1 When a processor finishes, it displays the HTML page defined in the finalPage attribute, which looks as follows:
<htmlState id="final" type="final" finalPage="appSession/finalPage.html"/>
2 If this attribute is not defined, the toolkit displays the HTML page defined in the finalStatePage setting in the HTMLClient section of the toolkit definition (btt.xml) file, which looks as follows:
<field id="finalStatePage" value="appSession/defaultFinalPage.html"/>
3 If this attribute is not defined, the toolkit displays the session homepage.
Go up to
HTML flow processor