Hi,
 
What is the best way to handle the following sample scenario in struts.
I am listing all the Students in a class. A click on the Student Name 
takes me to studentDetails.jsp

<%
    String studentName = null;
    for(int i=0 ; i < studentArray.length ; i++) {
        studentName = studentArray[i];
%>
            <a 
href="studentDetail.jsp?<%=Constants.STUDENT%>=<%=URLEncoder.encode(studentName)%>"> 

                <%= studentName %>
            </a>
<%
    }
%>

I am a newbie to struts and coudn't find any examples implementing such 
scenario. (please let me know if there are any).
It would be great to have a running example (xxxAction , yyyForm etc)

Thanks in  advance.

Zayed




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

Reply via email to