To check if the FTP Server is on, use the following snippet: public void ConnectFtpSite( string host, int port) { try { Socket s = new Socket ( AddressFamily .InterNetwork, SocketType .Stream, ProtocolType .Tcp); IPHostEntry iphost = Dns .GetHostByName(host);
Read More...