I am trying to make a Cassini-like server for a particular asp.net web application. The Client is not happy with the Cassini interface, so I am just expanding the Cassini code, adding new features, and providing a fresh look to the UI.
Now the problem I am facing is, all the files from Cassini source use the System.Web.Hosting
namespace. Visual Studio throws me an error saying:
The type or namespace name 'Hosting' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)
What am I missing here? I have already written
using System.Web.Hosting;
in the first line of the .cs file. I am using .Net FW 3.5 and VS2008.
Any help would be seriously appreciated.
Thanks.