Header « Tag « JSP-Servlet Q&A





1. Is it possible to create nested headers using the display:table tag?    stackoverflow.com

Is it possible to nest headers using the <display:table> tag library? ... by which I mean something like the following: enter image description here Note: Please let me know if this is ...

2. Set header in HttpServletResponse and Html tag is the same?    stackoverflow.com

In HttpServletResponse, invocation of setHeader() method is the same as we set value in html <head> tag? Java Code:

repsonse.setHeader("Pragma", "no-cache");

repsonse.setIntHeader("Expires", -1);
Html:
<HTML><HEAD>
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Expires" CONTENT="-1">
</HEAD><BODY>
</BODY>
</HTML>
Are both of them the same?

3. Complex headers via Display Tag    stackoverflow.com

is it possible to add complex headers in displaytag library? Complec headers i looked at the api but didnt find any info about it