> - when loading the page from the browser, the URL is returned 
> including the page parameters;

Yes, that would be a GET-method request.

> - when updating through AJAX, the URL is returned without the 
> page parameters.

AAJAX requests are often POST-method. In POST requests the parameters
are most often encoded in the body of the request.

> Shouldn't the AJAX call incorporate these page parameters 
> such that the results are consistent?

Not necessarily: the programmer normally picks up the parameters on the
"other side" of the HTTPServletRequest which deals with such
differences. However, you could see if there is a way to tell the AJAX
library to use GET requests...

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to