I'm using an html file to send a file to my server, using POST. The data looks like this:
data = -----------------------------16541483331115 Content-Disposition: form-data; name="txtFileName"; filename="Test.txt" Content-Type: text/plain Fred+ Bill -----------------------------16541483331115--
The real file contents is "Fred+ Bill " . Is there an easy way to extract just the file contents from this? Does anything need to change if this is a binary file rather than a text file? How about in the html file?
Thanks,
John Bobinyec