Ip Kontrolü
Merhaba arkadaşlar, bu makalemizde textbox a girmiş olduğumuz web sitesinin, ip adresini öğreneceğiz. Arkadaşlar using System.Net; class ını eklemeyi unutmayın.
Form1.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
IPHostEntry hostAdı = Dns.GetHostByName(textBox1.Text);
IPAddress[] ip = hostAdı.AddressList;
label1.Text = ip[0].ToString();
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek dileğiyle. Hoşçakalın. Bahadır ŞAHİN