ad_same_page_link

one of the documented procedures in this installation of the ACS
Usage:
ad_same_page_link   variable   value   text   { form "" }
What it does:
Makes a link to this page, with a new value for "variable".
Defined in: /web/philip/packages/acs-core/table-display-procs.tcl

Source code:


    if [empty_string_p $form] {
        set form [ns_getform]
    }
    set url_vars [export_ns_set_vars url $variable $form]
    return "<a href=\"[ns_conn url]?$variable=[ns_urlencode $value]$url_vars\">$text</a>"


philg@mit.edu