Web Sitesinin Ip Adresini Öğrenme

Bu örnekte Textbox a girilen web adresine ait ip adresini öğreneceğiz.
aspx sayfanıza 1 adet button, textbox ve label ekleyin.
Aşağıdaki Şekil 1 i inceleyin.



Şekil 1

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Net;
using System.Net.Sockets;

public partial class _Default : System.Web.UI.Page
{

public void IpOgren(string domain)
{
try
{
IPHostEntry domainAd = Dns.GetHostEntry(domain);
foreach (IPAddress ip in domainAd.AddressList)
{
Label1.Text = ("" +"Ip No: " + "" + ip.ToString() + "
");
}
}
catch
{
Label1.Text = "Hata oluştu...";
}
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Visible = true;
IpOgren(TextBox1.Text);
//veya
//IpOgren("http://www.google.com/");
//şeklinde kullanabiliriz.

}
protected void Page_Load(object sender, EventArgs e)
{
Label1.Visible = false;
}
}

Bir sonraki makalede görüşmek üzere. Bahadır ŞAHİN

About Bahadır Şahin

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.

0 comments:

Öne Çıkan Yayın

GridView da Seçili Satırı DetailsView da Göstermek

Merhaba arkadaşlar bu makalemizde GridView nesnesi ile birlikte DetailsView nesanesini birlikte kullanacağız. GridView da seçili satırın de...