ASP.Net de Ping Atmak
Ping ping = new Ping();
PingReply DonenCevap = ping.Send(TextBox1.Text);
if (DonenCevap.Status == IPStatus.Success)
{
// server ip adresini verir.
Label1.Text += DonenCevap.Address.ToString() + "<br/>";
PingReply DonenCevap = ping.Send(TextBox1.Text);
if (DonenCevap.Status == IPStatus.Success)
{
// server ip adresini verir.
Label1.Text += DonenCevap.Address.ToString() + "<br/>";
//server cevap süresini ms cinsinden verir.
Label1.Text += DonenCevap.RoundtripTime.ToString() + "<br/>";
Label1.Text += DonenCevap.RoundtripTime.ToString() + "<br/>";
//server yayına başladıktan sonra geçen gün sayısını verir.
Label1.Text += DonenCevap.Options.Ttl.ToString() + "<br/>";
}
else if (DonenCevap.Status == IPStatus.TimedOut)
{
Label1.Text = ("Zaman Aşımına Uğradı.");
}
Label1.Text += DonenCevap.Options.Ttl.ToString() + "<br/>";
}
else if (DonenCevap.Status == IPStatus.TimedOut)
{
Label1.Text = ("Zaman Aşımına Uğradı.");
}
Yorumlar
Yorum Gönder