C#技术百科
问问你的心你有没有信心 做事情要专一坚定,执着

 //打开注册表键
            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();

posted on 2010-11-18 15:39  王德田  阅读(212)  评论(0编辑  收藏  举报