/* * Przykład wywoływania skryptu MakeForm.ashx * w języku JavaScript * * Marcel Fortuna * (C) 2019 FORBIT Olena Fortuna * */ function myfunction() { var formData = "b7409fb0-88d1-4bae-b834-bfaaf7648fd8JanKowalskiinfo@forbit.net+480010020031"; var apiUrl = 'http://deweloperserwer.eu/scripts/makeform.ashx'; var xhttp = new XMLHttpRequest(); xhttp.open("POST", apiUrl, true); xhttp.setRequestHeader("Content-Type", "text/plain; charset=UTF-8;"); xhttp.send(formData); alert(xhttp.responseText); }