hst-core-tags
Tag renderURL


A HstComponent can make a render URL with this tag with adding some parameters. This renderURL will invoke the current page with different parameters for the HstComponent including this tag.

Example:
<ul id="paging-nav"> <c:forEach var="pageNr" items="${searchResults.pageNumbersArray}" varStatus="status"> <c:set var="active" value="" /> <c:if test="${searchResults.currentPage == pageNr}"> <c:set var="active" value=" class=\"active\"" /> </c:if> <hst:renderURL var="pagelink"> <hst:param name="page" value="${pageNr}" /> <hst:param name="query" value="${query}" /> </hst:renderURL> <li${active}><a href="${pagelink}" title="${pageNr}">${pageNr}</a></li> </c:forEach> </ul>


Tag Information
Tag Classorg.hippoecm.hst.tag.HstRenderURLTag
TagExtraInfo Classorg.hippoecm.hst.tag.HstRenderURLTag$TEI
Body ContentJSP
Display NameNone

Attributes
NameRequiredRequest-timeTypeDescription
varfalsefalsejava.lang.StringThe variable name of the renderURL
fullyQualifiedfalsetruejava.lang.BooleanIf value is 'true' the created link will be a fully qualified link (URLs), thus starting with 'http://' or 'https://' etc
escapeXmlfalsefalsejava.lang.BooleanWhether or not to escape &,>,<,", and '. When escapeXml = true, the renderURL can be safely used as a tag attribute (e.g, href, src, etc.) value. By default escapeXml is set to true.
scopefalsefalsejava.lang.StringScope of var or the localization context configuration variable. "page", "request", "session" or "application". "page" scope by default.

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator. Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-4 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.