Hi,

I want to code a conversion of String to Long as done in the jsp:scriplet
using jstl:

<c:set var="itemIdA" value="currentPath.entityA.key" />
    
    <jsp:scriptlet>
    try
    {
        Long tempLong = new
Long(((PathProxy)currentPath).getEntityA().getKey());
        pageContext.setAttribute("itemIdA", tempLong);
    }

How would i do that in jstl ?
TIA,
Vijay

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to