i'm flabbergasted,
i've looked at almost every example, but it just doesn't work (the other party says they don't receive my data in the request parameter)
I want to do this in code (send some xml data (without the xml declaration) to a uri):
<form method="post" action="http://100.100.100.100:11111/getinfo">
<input type="text" value="<ps:Balance>100</ps:Balance>" name="request" id="request">
<br><br>
<input type="submit" value="go">
</form>
EDIT the double http was a typo
EDIT 2: i obviously wasn't very clear in my hurry to ask the question: what i typed here is HTML, and when i open that html in IE and click the submit button, i get a reply from the server that the data (with the name 'request') was received. But now i want to get the same result in my C# code: post this string "100 as post-value and 'request' as post-key to the action uri.