Hi im relatively new to openacs and the tcl language. I have looked at sample examples in generating forms, but when i tried to create my own it gave me this error:
can't read "conn": no such variable
while executing
"ns_conn form $conn"
invoked from within
"set v [ns_conn form $conn]"
I have the form in one page and im trying to access the form variables in the other page. I have set the form action to the page trying to access the form variables.
This was my piece of code to try to access the form variable "surname":
< %
set formvar [ns_conn form $conn]
set surname [ns_set get $formvar surname]
% >
Thanks for your help.