how to pass ip-address to webBrowser control
问题 How to pass IPAddress to webBrowser control This is my code but i don't know how to pass ip-address to webBrowser control. IPHostEntry host; string localIP = "?"; host = Dns.GetHostEntry(Dns.GetHostName()); foreach (string line in File.ReadAllLines("proxy.txt")) { IPAddress ip = IPAddress.Parse(line); if (ip.AddressFamily.ToString() == "InterNetwork") { localIP = ip.ToString(); textBox1.Text = ip.ToString(); // This code doesn't work, it's just a hypothetical example: webBrowser1