Similar to WCF Self Hosting.
Is there a way to create a website that is “self-hosted” within a console application or dll?
Probably the wrong way to ask this question, but what i’d like to do is use this website to split results as web pages without creating the website within IIS.
Thanks.
A very basic HTTP server is implemented by the HttpListener Class in the .NET Framework.
If you need something more powerful, have a look at Microsoft Cassini, a simple HTTP server written in C# licensed under Ms-PL. It’s basically a demo how to host the ASP.NET runtime.