note description: "Thanks form Processing" author: "pascalf" date: "$Date$" revision: "$Revision$" class inherit SCRIPT redefine load_resources end creation make feature -- Basic Operations check_fields -- Check that the users entered valid entries do entries_checked := True end load_resources -- Load xml source. local fi: PLAIN_TEXT_FILE do cgi_handler.text_field_value("contactname") end process -- Terminate the sale process. local s: STRING do end reply_browser -- Re-direct the browser to the 'index' page. do response_header.generate_http_redirection(cgi_handler.text_field_value("index"), False) response_header.send_to_browser end feature -- Implementation end