Template Page - Confirmation Template

From SmartWiki
Jump to: navigation, search

The Confirmation Template will be displayed after the Template Page is submitted by the end user.

Examples

The following is an example of a simple confirmation page.

@STYLELINK@

Thank you...

After submission, the text "Thank you..." will be displayed to the end user. The end user can be provided here with next steps after the submission process.

The following is an example of a confirmation template that uses conditional logic to determine to which page the user should be redirected after submission:

@STYLELINK@
<!--@sslogic("@Q1@"="Yes" and "@Q2@"="Yes" and "@Q3@"="Yes" and "@Q4@"="Yes")-->
<script>// <![CDATA[
location.href="/ex/ex_Apppage.jsp?token=HwwISRgGZ15RSxde&appid=102587&oppid=@opportunityid@";
// ]]></script>
<!--@else-->
<script>// <![CDATA[
       location.href ="/simpleface/sm_home.jsp";
// ]]></script>
end

In the above example, if the answer to all four fields named Q1, Q2, Q3 and Q4 are answered "Yes," the user will be redirected to another Template Page after submission. If the answer is anything other than four "yes"es, the user will be redirected to their home page.

See Also