<render:writeUri> Tag

The URI created by writeUri combines the URI fragment with the base skin path for the portal plus the webapp directory name (ie: /<webapp>/<basepath>/<fragement>). Neither accounts for client classification, localization, or other dynamic resource resolution features.

Note: If you use this tag in a JSP that is used in a struts or Java Page Flow application, in order for the URI to resolve correctly, Java Page Flow support must be enabled in the portal Web project's WEB-INF/netuix-config.xml file, as shown in the following example. Notice the <enable> element is set to true.

<!-- Enable or disable Pageflow support -->
<pageflow>
    <enable>true</enable>
</pageflow>

Syntax

<tagName attribute="value" />

Attributes

uriFragment

Required (String) - The relative path to the skin's root directory.

Example

<render:writeUri uriFragment="<%= uriFragment %>" />

Related Topics

<render:createUri> Tag