>
> What's a good way to clear all the fields a form that can apply
> generally to any form (so I can write one method and apply it to any
> one of a set of forms). If that can't be done with a form (say
> because I can't know programmatically what field are in a form) I'd be
> content to simply clear all the attributes in a record and ship that
> to the form.
>
With javascript you can call the form's reset method or you can have a
reset button ( <input type="reset" value="Reset!">)
Fred