Using jsp for the views, i want to prefix some path, for example this:
<link rel="stylesheet" href="<h:outputText
value="#{facesContext.externalContext.requestContextPath}"/>/html/style/mystyle.css"
/>
The bad about that is, that i have to take a component, where an el
expression should be enough, shouldnt it?
Is it possible to habe:
<link rel="stylesheet"
href="#{facesContext.externalContext.requestContextPath}/html/style/mystyle.css"
/>
Or is this not possible?
kind regards
PS: Using facelets i can use what i want - but using jsp its not
evaluated? Some hints?