This should be very trivial but for reason can't find it. I'm posting some binary data to a form in ASP.NET as multipart/form-data and I can see that the request is receive by looking at Request.InputStream :
-------------------------------7cf2a327f01ae Content-Disposition: form-data; name="DeviceID1"
Some binary data
-------------------------------7cf2a327f01ae Content-Disposition: form-data; name="DeviceID2"
Some binary data ...
However I can't find how I can retrieve each part as part of the Request.Form (or Request.Params) collection. What could be wrong? One work around is to use a filename then retrieve from Request.Files but I wonder what is the proper way of getting the content. Thanks.