Giả sử đã có TimeBean như sau:
public class TimeBean implements Serializable { private int hours, minutes, seconds; public TimeBean() {hours =minutes=seconds=0; } public int getHours(){return hours; } public void setHours(int h) if(h>=0 && h <24)hours=h;
} } Hãy cho biết đoạn mã sau trong trang JSP sẽ hiển thị gì trên trình duyệt?
id="TimeBean1" scope="request" class="JBean.TimeBean"/>
name="TimeBean1" property="hours"/>
Giả sử đã có TimeBean như sau:
public class TimeBean implements Serializable { private int hours, minutes, seconds; public TimeBean() {hours =minutes=seconds=0; } public int getHours(){return hours; } public void setHours(int h) if(h>=0 && h <24)hours=h;
} } Hãy cho biết đoạn mã sau trong trang JSP sẽ hiển thị gì trên trình duyệt?
Đáp án đúng: A