I\'m developing a web page that needs to take an HTTP Post Request and read it into a byte array for further processing. I\'m kind of stuck on how to do this, and I\'m stumped
You can just use WebClient for that...
WebClient c = new WebClient(); byte [] responseData = c.DownloadData(..)
Where .. is the URL address for the data.
..