C#怎么设置ie代理

 //打开注册表键
            Microsoft.Win32.RegistryKey rk=Microsoft.Win32.Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings",true);

            //设置代理可用
            rk.SetValue("ProxyEnable",1);
            //设置代理IP和端口
            rk.SetValue("ProxyServer","192.168.0.1:80");
            rk.Close();

你可能感兴趣的:(C++,c,C#,IE,Microsoft)