Posts Tagged ‘html’

Coding a web server with C# – part 2

Posted in Programming on February 5th, 2011 by kev – Be the first to comment

Hey 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 »

Using custom attributes for validation

Posted in jquery on February 2nd, 2009 by kev – 1 Comment

I was hired a couple of months ago to build a validation system for a legacy web-app built on Java Servlet technology. The app was a gigantic system with many existing web forms.

read more »