hi want to access from bean object in jsp page .how to get that.pls help asap. 1)i have formbean class with customername,date,amount,rate etc with setter() and getter() for the field menmbers. 2) i have dataaccess class where i can get data for the bean calss property from database and set data to formbean class object like class formbean{ string amount;String rate; public void setAmount(String amount){this.amount=amouny}; String getAmount(){return amount;} etc.... }
class dao{ public Formbean fetchcust() { loan.setCloseDt11(rs.getString("CloseDt")); loan.setAmount11(rs.getString("Amount")); loan.setRate11(rs.getString("Rate")); return loan; } and returning this object. my question is how to access this object in jsp page