Difference between revisions of "Template Page - Confirmation Template"

From SmartWiki
Jump to: navigation, search
(See Also)
Line 54: Line 54:
 
==See Also==
 
==See Also==
 
* [[Template Page]]
 
* [[Template Page]]
 +
* [[Template Page Variables]]

Revision as of 17:07, 11 December 2014

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.

<html>
<head>
@STYLELINK@
</head>
<body leftmargin=1 rightmargin=1 topmargin=1 bottommargin=1 marginheight=1 marginwidth=1>

<center><h2>Thank you...</h2></center></body>
</html>

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:

<html>
<head>
@STYLELINK@
</head>
<body leftmargin=1 rightmargin=1 topmargin=1 bottommargin=1 marginheight=1 marginwidth=1>

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

       location.href ="/simpleface/sm_home.jsp";

</script>
</body>                                                 

<!--@end-->

</html>

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