Coding a web server with C# – part 2
Posted in Programming on February 5th, 2011 by kev – Be the first to commentHey all,
We left off at the end of my last article being able to grab and print a GET request from a web page. There were a few issues with the way we did things however. Firstly, we were reading in a buffer the size of the maximum possible buffer size, so when we were printing out our request it was followed by a ton of whitespace. In order to fix this I tried to trim the string for whitespace, this did not work.
read more »