How to set an object in attribute using tags
Hello.
I know you can do this <% request.setAttribute("someName", Object); %>
But i am wondering if there is a jsp , jstl tag which can do the same thing? Also where I can give the scope.
I would like to do something like this <jsp:someTag name="someName" value=${variable} scope="request" />
Thanks in advance.

