A
Aryeh.Friedman
I want every page on my site to be requested using POST (when linked
from by myself)... namely almost all my pages call some kind of
backend and I *DO NOT* want the user to see any of the backend/
internal servlet names (yes I am using servlets, and no JSP is not a
real option for other reasons).... what I have right now is something
like this:
function send()
{
figure out the URL
location.href(url);
}
the only problem is location is a GET and not a POST and what I want
to do (without introducing forms) is force it to be a POST
from by myself)... namely almost all my pages call some kind of
backend and I *DO NOT* want the user to see any of the backend/
internal servlet names (yes I am using servlets, and no JSP is not a
real option for other reasons).... what I have right now is something
like this:
function send()
{
figure out the URL
location.href(url);
}
the only problem is location is a GET and not a POST and what I want
to do (without introducing forms) is force it to be a POST