Hello. I have a problem with TStringList, more exactly storing ">" inside string.
I need this to work with Indy HTTP, POST list of parameters to server
When I look into list with Items[1],
"pass=>A" is converted to "pass=%3EA"
How to keep it ">A" so it POST the right pass?
I need this to work with Indy HTTP, POST list of parameters to server
Code:
Items:=TStringList.Create;
Items.Clear;
Items.Add('name=test');
Items.Add('pass=>A');
http.Post('ip here',Items);
When I look into list with Items[1],
"pass=>A" is converted to "pass=%3EA"
How to keep it ">A" so it POST the right pass?