我有Arraylist
,Request scope
其中包含所有Students
对象..我正在显示该数据JSP page
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>
请帮我
提前致谢