What I am trying to make is something like a simple web server. It just needs to be able to accept incoming urls.... EX: http://localhost:8081/index.asp?url=Whatever. How do I do this? I need to get the url and do some processing on it. Then return a url to a picture that I will have... EX: http://localhost:8081/image1.jpg. It will be running as a service.

Chris