thanx Rob. Cud u tell me why it behaved that way. I remember reading long
time back "It has something to do with the way Get and Post r used". Cud u
throw some light on this?

-----Original Message-----
From: AOLserver Discussion [mailto:[EMAIL PROTECTED]]On Behalf
Of Rob Mayoff
Sent: Thursday, July 05, 2001 12:05 PM
To: [EMAIL PROTECTED]
Subject: Re: [AOLSERVER] QueryString retrieval


+---------- 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