Ver Mensaje Individual
  #3 (permalink)  
Antiguo 11/03/2008, 11:58
Avatar de Peterpay
Peterpay
Colaborador
 
Fecha de Ingreso: septiembre-2007
Ubicación: San Francisco, United States
Mensajes: 3.858
Antigüedad: 16 años, 8 meses
Puntos: 87
Re: Direccionar a un servidor con Ip

a q te refieres con q se conecte.

digo hacer el ping es simple

using System.Net.NetworkInformation;
using System.Net;

Ping ping = new Ping();
if(d.Send(url).Status== IPStatus.Success)
{
... aqui haces lo de tu conexion
}

saludos
peter