tags:

views:

55

answers:

2

I am a beginner in c# programming. I want to connect with client from server

Still I wrote the program of a client/server application. After getting response from both sides then connection will be established. But I want to just single click from server side connection to have established. I don't know how to go. Please help me.

Thanks in advance

Thanks & Regards
Ashish Raut

A: 

You should start by clarifying what the difference between your "client" and "server" is.

Gurdas Nijor
+3  A: 

Ashish, in client server programming, the initiation of a connection is usually a client side task. You may want to read up more on Client Server Programming here:

http://en.wikipedia.org/wiki/Client-server

Raj More