The WebClient class can be used to automate the login to a web application. If the web application requires the client to enable cookies which is often the case when the application uses session state, the application returns an error to the client indicating that cookies must be enabled. The WebClient class can be extended to support cookies by overriding the GetWebRequest method and implementing...
4/25/11
4/20/11
Start Multiple Projects with Visual Studio 2008 and 2010
By default, Visual Studio allows us to set a single Startup project on a solution. There are instances when we need to start multiple projects. A typical case is when we have a client and server console application, and we want to debug/start both at the same time. There is a feature on Visual Studio (2008 and 2010) that allows us to start multiple projects within a solution. To configure multiple...