Hello,
I've this very simple HTML page
<html>
<body>
<form action="http://test.thirdpartysite.com/hello/page" method="post">
\<input type="imput" name="value1" value="hello world" />
\<input type="imput" name="value2" value="1500" />
\<button type="submit" value="send">Submit\</button>
</form>
</body>
</html>
As you can see , I'm sending form values to http://test.thirdpartysite.com/hello/page , this site is of third party people.
My site have a Oracle application express application build on 5.1.4 version. I want to make this simple page to submit values via post method to third party site:
Mi first step was build this page

But my problem is , where I can change the properties values to submit this values to third party site http://test.mysite.com/hello/page ?
Best regards