dp_formvalue

one of the documented procedures in this installation of the ACS
Usage:
dp_formvalue   name
What it does:
Returns the value that goes with key $name in dp_form
Defined in: /web/philip/tcl/data-pipeline-defs.tcl

Source code:


    upvar dp_form dp_form

    if [info exists dp_form] {
        return [ns_set get $dp_form $name]
    }


philg@mit.edu