Is there a TCl equivalent of PHP's header tag -
can tell use in tcl redirecting page in case of header tag in php
i used ::ncgi::redirect not redirecting automatically
try using
::ncgi::redirect
@ top of code. basically, should come before writing response because returns header browser. there should notputs
statements before::ncgi::redirect
try returning header this:
::ncgi::header text/html location $url
. again, should done before printing response.
Comments
Post a Comment