On 5 Feb, 10:51, "suneet.tapa...@gmail.com" <suneet.tapa...@gmail.com>
wrote:
> will the server be able to get me the parameters both from form post
> as well as of the query string in the request object.
Yes, but not in the same way. "Parameters" is a very general term and
it includes both form parameters and those in the query string. You'll
also need to implement both the doPost() and doGet() methods.
If, as in the example you quote, then it's a POST with parameters
embedded in the URL rather than supplied by <form> <input> elements,
then yes it's just like retrieving them from a GET.
|