hi hellow
I have list of proxy in the listbox and im trying to edit the registry
i was able to change the proxy in the registry but my webbrowser doesnt load the html page.
*Note that the proxy im using is "alive" or should i say "its working"
Here is the code i use:
string key = "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
Random randomproxy = new Random();
string proxy = listBox2.Items[randomproxy.Next(0, listBox2.Items.Count)].ToString() ;
RegistryKey RegKey = Registry.CurrentUser.OpenSubKey(key, true);
RegKey.SetValue("ProxyServer", proxy);
RegKey.SetValue("ProxyEnable", 1);
<hr/>
Can someone give me a simple project that uses proxy with web webbroser control...
Can someone give me the correct code in using proxy and i will see the result in the web browser
I have list of proxy in the listbox and im trying to edit the registry
i was able to change the proxy in the registry but my webbrowser doesnt load the html page.
*Note that the proxy im using is "alive" or should i say "its working"
Here is the code i use:
string key = "Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings";
Random randomproxy = new Random();
string proxy = listBox2.Items[randomproxy.Next(0, listBox2.Items.Count)].ToString() ;
RegistryKey RegKey = Registry.CurrentUser.OpenSubKey(key, true);
RegKey.SetValue("ProxyServer", proxy);
RegKey.SetValue("ProxyEnable", 1);
<hr/>
Can someone give me a simple project that uses proxy with web webbroser control...
Can someone give me the correct code in using proxy and i will see the result in the web browser