how to get the name of a JSP file inside the same JSP
Does somebody know how to get the name of a JSP file inside the same JSP?
File example1.jsp
<% String myFileName = ? %>
<H1><%= myFileName %></H1>
<!-- myFileName shoulsreturn example1.jsp -->
thanks!

