private
void Change_IE_Settings(String strProxy, bool action){
RegistryKey RegKey = Registry.CurrentUser.OpenSubKey("Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings", true); if (action == true){
RegKey.SetValue(
"ProxyServer", strProxy);RegKey.SetValue(
"ProxyEnable", 1);}
else{
RegKey.SetValue(
"ProxyEnable", 0);}
}
But with these all three web browser's have same proxy settings...I need all three should have different proxy settings.
Replies
Know the answer? Post it — somebody with the same question will find it here.