I have JSP form Page and i want to reset values in form
[edit:reformated code so easier to read]
When i try to click on Reset , it only reset value fromtextarea which is labeled as "Notes/issues/open items", not from other fields. I don't know why. can anyone please help [ December 19, 2003: Message edited by: Eric Pascarello ]
The reset button only clears the data to what was orginally there when the page loaded. So if you are placing values into the fields from the jsp page, then that is what is going to show. If you want to get rid of that then yo need to have a function hat loops through the elements and clears them. Eric