I have a JSP page that is initially using scriptlets, now I am going to 
transfer it using JSTL tags

The initial code is

<%@ page import="mm.*" %>
<jsp:useBean id="cate" scope="session" class="mm.CateBean" />
<jsp:useBean id="report" scope="page" class="mm.ReportBean" />

<%
        int idx = report.getId();
        mm.LData ld = cate.getLData(idx);
%>

How to translate the Java scripts into EL using JSTL core library?

Thanks a lot!
Hao



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

Reply via email to