I wish to use $(member.email)
, a variable which I've passed into a JSP page, inside of a <%
block on that same page. Its value shows up outside of the block, but inside the block it can't see it at all.
I have tried using request.getAttribute("member.email")
but that merely spit back a null
. Request.getAttribute("member.email")
gives me a string, which does not have the aforementioned value outside of the block.
I am unsure how to describe this problem any better than I have.