Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to set the title of my JSP page

<head>
<title> ABCD
</title>
</head>

where ABCD is accessed from the backing bean is their a way to set the title using a JSF/Tomahawk tag.

share|improve this question

1 Answer

up vote 2 down vote accepted

Using JSF 1.1 managed beans with JSPs, you will likely need to place a deferred evaluation expression (like #{foo.bar}) within an attribute that supports them. That is, use a <h:outputText value="#{foo.bar}" /> tag.

JSF controls must be within the view (typically defined by the <f:view> tag.) Most JSP editors put the view within the <body> element, but it can be placed surrounding the <html> element if necessary.

share|improve this answer
yup u are right , but <h:outputtext> gives us a label HTML tag while i need a Title Tag as output. so ur answer still doesnt solves my problem – Archan Mishra Aug 4 '11 at 19:09
1  
outputText shouldn't emit any tag so long as you don't set any HTML attributes on it. Use <title><h:outputText value="#{foo.bar}" /></title> – McDowell Aug 4 '11 at 19:19
Hey thanks works like a charm .. :) – Archan Mishra Aug 4 '11 at 19:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.