The forms engine from Smartsite 5 still exists in SixSmartsite, but not in the iXperion Publication Engine. To use these forms, an Application page rendered by the CMS Engine is embedded in a page.
The application page could look something like this:
HTML |
Copy Code
|
<html>
<head>
<title><se property="title" /></title>
[deferproperty("_headers")]
<style type="text/css">
[deferproperty("_css")]
</style>
<script type="text/javascript" language="javascript">
<!--
[deferproperty("_jsglobals")]
function doOnload()
{
[deferproperty("_jsonload")]
}
// -->
</script>
</head>
<body onload="doOnload()">
<se type="renderform" error="{error}">
<parameters>
<formid>1234</formid>
<feedbackmessage>information received successfully</feedbackmessage>
</parameters>
</se>
</body>
</html>
|
Includes and other elements in the head section can be passed to the respective placeholders in the embedding page.