Home > Contents > Index >
Template Tags TOC | Alpha TOC | Tag Family TOC | Purpose TOC | Annotated TOC | Index
render:satellitepage
Inserts a pagelet identified through a page name and a set of arguments.
Syntax
<render:satellitepage pagename="nameOfPageEntry
" [packedargs="packed_arguments
"] > [<render:argument name="variable1
" value="value1
"/>] </render:satellitepage>Attributes
pagename
(required)- Input. The name of the page to invoke.
cachecontrol
(deprecated)- This attribute specifies for how long to cache the pagelet. See satellite:page for details about this parameter. This attribute is deprecated as its mis-use can result in expired pages being served from cache inadvertently. Instead of specifying this attribute, specify a value for cache information for Satellite Server in your Site Entry or Template asset.
packedargs
(optional)- Input. Provides a way of specifying multiple arguments in one string. The value of this argument should be the output of a render:packargs tag.
Parameters
render:argument
(optional)Input. Name/value pairs to pass to the page entry. Description
This tag is the CS-Direct equivalent of the
satellite:page
tag with the following exception:
rendermode
is passed automatically.Use this tag to serve a CS-Direct page or pagelet when you are using CS-Satellite on your system. The page or pagelet must have a page entry in the SiteCatalog. If the specified pagelet is already cached on a CS-Satellite, this tag loads it. If the specified pagelet is not already cached, this tag caches it and loads it.
If an element is coded with a
render:satellitepage
tag but CS-Satellite is not present,render:satellitepage
passes the call torender:contentserver
which then serves the page or pagelet.If an asset is being rendered through a template, the
render:calltemplate
tag should be used instead.errno
-106 if invalid parameters are passed. Invalid parameters are parameters that are not specified as PageCriteria in the SiteCatalog.
Example
The following code inserts a nested pagelet whose
pagename
is specified by the variableTopNavVar
. It passes to parameters,sitepfx
andsite
, both of which correspond to variables with the same names.<render:satellitepage pagename='<%=ics.GetVar("TopNavVar")%>'> <render:argument name="sitepfx" value='<%=ics.GetVar("sitepfx")%>'/> <render:argument name="site" value='<%=ics.GetVar("site")%>'/> </render:satellitepage>See Also
Home > Contents > Index > ![]()
FatWire JSP Tag Reference
Copyright 2005,2006,2007 by FatWire Software
All rights reserved.