I have this code in jquery:
var ajaxHandler;
ajaxHandler = "http://mypage.com/_LAYOUTS/com/Handlers/LoginHandler.ashx";
$.post(ajaxHandler + "?task=Login", { UserName: _UserName, Password: _Password },
function (data) {
// ...
}
)
How Can retrieve the 'data' that returned from that page? using indy http or ipworks http?
Using Indy's
TIdHTTP
component: