Hi,
Is there a way to send a POST Request from a FORM. I have an Oracle Form and inside FORM a user clicks on a button and it opens a webpage that accepts some parameters that are also passed when a button is clicked. I don't want the user to see the querystring parameters i.e. can I make a POST Request when a button is clicked as by defualt it's a GET Request. For example currently in the browser address bar it shows like:
as I want in the address bar something like:
don't want to show any parameters in the address bar. Any help is appreciated.
Thanks
Is there a way to send a POST Request from a FORM. I have an Oracle Form and inside FORM a user clicks on a button and it opens a webpage that accepts some parameters that are also passed when a button is clicked. I don't want the user to see the querystring parameters i.e. can I make a POST Request when a button is clicked as by defualt it's a GET Request. For example currently in the browser address bar it shows like:
Code:
[URL unfurl="true"]http://www.somepage.com/pagename.jsp?name=someName&id=someId[/URL]
Code:
[URL unfurl="true"]http://www.somepage.com/pagename.jsp[/URL]
Thanks