I want to make an HTTP POST request from an HTML anchor tag that has the URL in its href attribute.
How can I make it use POST instead of GET?
<a href='http:/test_url:5002/api/GetFile'></a>
I also want to set parameters in the body of the request. How can I do that?
I want to find a way to include them in the HTML tag itself, not in a JavaScript file.