我有Request scope
Arraylist
在駐留在從Jsp頁面ArrayList類檢查的屬性值,它包含了所有Students
對象.. 我在快樂JSP page
如何使用<c:if>
class Student
{
int sno;
String name;
String type; // here type can be either R or D
.
.
.
}
顯示的數據,而我'顯示Student obj
我想查看的數據student type
if type=D
然後我想添加<select>
框 如何做到這一點???
我使用struts 1.3
和JDBC
我的代碼是
<logic:iterate id="student" name="allstudents" scope="request">
<bean:write name="student" property="sno" format="#"/><br>
<bean:write name="student" property="name" /><br>
<bean:write name="student" property="type" /><br>
// here i want to display <select> if type =D
.
.
.
</logic:iterate>
請幫我
在此先感謝
Thanq JB Nizet爲您的寶貴答案... – Clarence 2013-02-12 08:54:59