Imran,
Thanks for your reply and information. I have a couple of forms that get sent to a
servlet, calculations are done and the information is available in the session, this all works fine. But I just want to be able to reset the form fields, just as a normal (html) reset does,not end the session, at this time, but they may want to update or change the data, hit submit and get a new set of calculations.
so..
AveSal.value = '';
would become?
<%=session.removeAttribute("AveSal") %>
??