All of my JSP pages have include taglib directives
like :
<%@ taglib prefix="ka" uri="/mykillerapp-taglib" %>
<%@ taglib prefix="scriptfree"
uri="/scriptfree-taglib" %>
I would like to make some of theses directives (the
2nd) "mandatory". In other words, I would like to
include this taglib withou
Thanks a lot.
Where can I download this ?
Just a step further ...
Is there a way to automatically include a <%@ taglib
%> in all the JSP pages a compilation time. So all
pages will be scriptlet-free ?
--- Shawn Bayern <[EMAIL PROTECTED]> wrote:
> There's a standard, easier way to handle it: yo
I would never want to
> take the ability
> away from my system to be able to have code in JSP
> layer. Of course as
> we implement the MVC I understand that the View
> should not contain any
> buisnesslogic, but then again it might have
> presentation logic.
>
> hope it
Need some advices to use ONLY taglib in my JSP pages.
We have some taglibs implementing our business model.
With a MVC approach in mind, we avoid using Java code
in our JSP and always put "model" into tag.
Is it possible de restrict JSP pags to only contains
tags (taglig, HTML, ...) et not Java so