?
=?ISO-8859-2?Q?Dra=BEen_Gemi=E6?=
Let's say that I wan't to stop processing of JSP page.
I can do it by executing return statement in a JSP body.
It returns from compiled servlet 'service' method. If
I call <jsp:forward../> before it, I could redirect to
another page.
Besides being slopy, is there anything wrong that violates some
standard or causing unstable condition with this method ?
I know that I should resolve all the issues in a bean or servlet
that does actual data processing before JSP does the rendering,
but sometimes I just might need to do that.
DG
I can do it by executing return statement in a JSP body.
It returns from compiled servlet 'service' method. If
I call <jsp:forward../> before it, I could redirect to
another page.
Besides being slopy, is there anything wrong that violates some
standard or causing unstable condition with this method ?
I know that I should resolve all the issues in a bean or servlet
that does actual data processing before JSP does the rendering,
but sometimes I just might need to do that.
DG