dp_read_form_variables

one of the documented procedures in this installation of the ACS
Usage:
dp_read_form_variables   { error_if_not_found_p "1" }
What it does:
Reads the set from ns_getform info dp_form
Defined in: /web/philip/tcl/data-pipeline-defs.tcl

Source code:


    if { [ns_getform] == "" } {
        if $error_if_not_found_p {
	    ns_returnerror 500 "Missing form data"
	    ad_script_abort
        } else {
            return
        }
    }
    uplevel {
        set dp_form [ns_getform]
    }	


philg@mit.edu