This might probably be a general JSP question too, but
to what extend would I be better off by using my own
specialized tags or even java scriplits instead of
struts tags?

E.g:

Struts:
<bean:write name="message" scope="request" />

vs

<%
  String message = request.getAttribute("message");
  if (message != null ) {
%>
  <%= message %>
<%
  }
%>

What would the performance difference be between above
two mentioned pieces of code that does the same thing?

What about other struts tags (html, logic, beans,
etc)? How do they measure with performance?

Thanks!


__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to