![]() | Products |
| Home » Technical Support » Elevate Web Builder Technical Support » Frequently Asked Questions |
with MyServerRequest do
begin
URL := 'https://www.mydomain.com/login.php';
Method := rmPost;
RequestHeaders.Values['Content-Type'] := 'multipart/form-data; boundary=AaB03x';
with RequestContent do
begin
Add('--AaB03x');
Add('Content-Disposition: form-data; name="user"');
Add('');
Add(MyUsername);
Add('--AaB03x');
Add('Content-Disposition: form-data; name="password"');
Add('');
Add(MyPassword);
Add('--AaB03x');
end;
Execute;
end;This web page was last updated on Wednesday, January 5, 2022 at 07:36 AM | Privacy Policy © 2025 Elevate Software, Inc. All Rights Reserved Questions or comments ? |

