Dear sir
In my project i have to show amount of all the months i.e if user enter first due date and expiry date then it calculate the amount of all the months which are between first due date and expiry date in reports. in Jsp how a month can be added in a table date value.
if my filelds are :
java.sql.Date duedate=rs.getDate("firstrentduedate");
java.sql.Date expirydate =rs.getDate("expiryofrent");
while(duedate .after(expirydate))
{
duedate=duedate+'addmonth'
}
plz help