Top "Jsp-tags" questions

JSP tags are a feature of Java Server Pages that allow the encapsulation of view-specific logic and separation of presentation and business concerns.

JSTL custom tag

How would I write (just a template) for a custom tag with 2 attributes that lets me output a html fragment (…

jsp jstl jsp-tags
How to load Html page which is outside application context using JSP include or c:import or symlink

I need to load some html pages created dynamically by some other application into my application jsp page using jsp …

jquery jsp jstl jsp-tags jspinclude
displaytag external paging/sorting and getting true row number

I'm using external paging/sorting with a custom TableDecorator and the following DisplayTag table in a JSP: <display:table …

java pagination paging jsp-tags displaytag
How to implement a "include" jsp tag?

I need to define a jsp tag which named "include". It should be used as: <cms:include page="/aaa.…

jsp jsp-tags jspinclude
JSTL - use formatDate with a java.sql.Timestamp

I have a tag with the following: <%@ tag body-content="empty"%> <%@ attribute name="timestamp" required="true" type="java.…

java servlets timestamp jstl jsp-tags
Include a CSS file as inline style in a JSP

I have a CSS file ("style.css") that I want to embed as inline CSS in a JSP. How can …

html css jsp jsp-tags jspinclude
Liferay.Upload Component Usage for Multi-file Upload

Developing a custom portlet to upload multiple files in Liferay 6.2. Found the Liferay.Upload component while going through Liferay Source …

file-upload liferay liferay-6 jsp-tags liferay-aui
How to access request in JspTags?

I want to call request.getContextPath() inside a JSP tag which extends SimpleTagSupport, is there any way to do it?

java jsp jsp-tags
How can I make a custom JSP tag that uses other JSP tags?

I would like to write a custom JSP tag whose output includes other JSP tags which should themselves also be …

jsp jsp-tags
How to properly escape triple nested quotes in JSP tags

We just upgraded Tomcat and the newer Tomcat doesn't like nested quotes in the tag, so we have to alternate …

java jsp tomcat quotes jsp-tags