Is there something similar to a Java Servlet in .NET, besides the HTTPHandler?
>From googling and reading it seems that the HTTPHandler can do the exact same things as a Java Servlet, but processing request aren't their intended function. HTTPHandler are meant to do post processing to pages coming out of the server or to handle specific mime types for the server. What I'm looking for is a way of getting the content body of a request then writing content back in the response for simple 'POST' AJAX calls.
