hi all
i was wondering can sumone tell me what is the best way to send a login request to a server
how does it work and what do you need to look at
Printable View
hi all
i was wondering can sumone tell me what is the best way to send a login request to a server
how does it work and what do you need to look at
You will need to use winsock
Just google "C# winsock tutorial" and you should find some good tuts on how to send and recieve data through winsock
thanks
From what I have learned, C# Asynchronous Sockets are better.
Yap, async sockets are the way to go.
I mainly learned it here;
http://msdn.microsoft.com/en-us/library/fx6588te.aspx
- Nillus
Here is an uploaded Server and Client Example [Source].
(See Attatchments)
thanks :}
Hey I was wondering do any of you have a screen shot for a server with a GUI just to see how to see how someone ells did it and to know what is the best way to set the GUI up and what information to show
For the server, you need a 2 Textbox's, and one button (just basic)
-textbox 1 is where you enter the port
-button 1 to start listening
-textbox 2 for incoming data
if you want to send data, youd need another textbox and button.
Thats pretty much the basic GUI for server, the client you should be able to figure it out
hmm ok thanks