+---------- On Jul 5, Prakash Sinha said:
> i am sorry it was action only [ns_queryget action], but the method i am
> using for posting data is POST,
> <form name=traffic1Form method="post" action="traffic.adp?actions=traffic1"
> onSubmit="return validateForm(this, false)">
>
> can't i use post this way to retrieve the queryString

You would be probably better off using
<INPUT TYPE='HIDDEN' NAME='actions' VALUE='traffic1'>.
Then [ns_queryget action] would work.

But if you insist on doing it your way, then try this:

    set queryset [ns_parsequery [ns_conn query]]
    set action [ns_set iget $queryset actions]

Reply via email to