Hi, I want to data Transfer from client Computer to server Computer for that which way is better i dont know if any one suggest to me about that and also provide an example about that it may better for me
Printable View
Hi, I want to data Transfer from client Computer to server Computer for that which way is better i dont know if any one suggest to me about that and also provide an example about that it may better for me
You should probably look at the TcpClient/TcpListener classes first. The MSDN Library has explanations and examples.
Actually i want to transfer data (database) from client to server computer database. Here one server computer contain main database and many client pc share it.
It's always nice if you can provide all the relevant information in the first post.
Can your application see both databases? If so then it's straight ADO.NET. You simply retrieve data from one database and then save it to the other. If you don't know how to use ADO.NET then you should check out the FAQ thread at the top of the Database Development forum. It provides links to various useful resources. Some of the code examples will be VB.NET but the principles are the same. One of the resources is a CodeBank thread of mine, which I have provided in both VB and C#. You can find that same thread by following the CodeBank link in my signature.