My colleague has an ASPX page that contains server controls (the equivalent of custom tags in a
JSP page). In this page, he has a scriptlet (in C#) that looks up one of the server controls on the page by ID, and then calls a method on it. It looks like this:
So, converted to
Java / JSP terminology: he has a scriptlet that looks up a custom tag on the page according to its Id attribute, and then calls a method on the tag handler object for that custom tag.
Is something like this possible when using JSPs?