A Client - Server App using .NET Remoting
This is a basic client-server application where the client is able to view and insert records to the database using the server. Both applications have been created as Console applications, just to keep it simple ;-) Before you start you must have, - Visual Studio 2005/2008 Installed - MS SQL Server 2005 Installed Step 1 : Creating the Server Before you start to do anything Open Visual Studio and create a Console Application in C# named ServeWithDL. Create the following folder structure and the files. Before you start to do anything, right click on References and add reference to System.Runtime.Remoting System.Runtime.Serialization System.Runtime.Serialization.Formatters.Soap Then open the Supplier.cs within the BusinessEntities folder and paste the following code; ==================================================================== using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections...