# File lib/cgikit/ajax/handler.rb, line 61
    def reset_form_values( request )
      request.form_values.each_key do |key|
        if key != '_' then
          request.form_values[request.context_id] = [key]
          return
        end
      end
    end