Looking for equivalent of Struts html:rewrite in STL
I know how to rewrite URLs with Struts...its the html:rewrite tag.But how do I do this with STL or an other maybe JSF taglib?Thanks!
[160 byte] By [
Miikee_a] at [2007-10-2 10:28:08]

In my case, both produce expected results
<link rel="stylesheet" type="text/css" href="<html:rewrite page='/assets/css/user.css'/>"/>
<link rel="stylesheet" type="text/css" href="<c:url value='/assets/css/admin.css'/>"/>
Hope this help,
OO
The "c" would be the JSTL core tag library.Yes it looks to be the one imported.Yes it should contain the tag <c:url>What version of JSTL are you using? It looks like JSTL1.0, which definitely includes the url tag.What server are you using?