程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 如何用C#設置IE的代理

如何用C#設置IE的代理

編輯:C#入門知識

相關的代碼可以參考以下的:

 
1   private void button3_Click(object sender, EventArgs e)
 2         {
 3             //打開注冊表鍵 
 4             Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"SoftwareMicrosoftWindowsCurrentVersionInternet Settings", true);
 5 
 6             //設置代理可用 
 7             rk.SetValue("ProxyEnable", 1);
 8             //設置代理IP和端口 
 9             rk.SetValue("ProxyServer", this.textBox1.Text.ToString() + ":" + this.textBox2.Text.ToString());
10             rk.Close();
11             Factory.ExecuteNonQuery("update  IP set area=1 where address= " + str1 + "");
12             this.dataGridView1.DataSource = Factory.GetDataTable("select * from ip");
13             MessageBox.Show("成功!!!");
14         }
15 
16         private void button4_Click(object sender, EventArgs e)
17         {
18             //打開注冊表鍵 
19             Microsoft.Win32.RegistryKey rk = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"SoftwareMicrosoftWindowsCurrentVersionInternet Settings", true);
20 
21             //設置代理不可用 
22             rk.SetValue("ProxyEnable

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved