Eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
ProcessStartInfo psi = new ProcessStartInfo(...);
psi.UseShellExecute = true;
psi.Verb = "runas"; // this will cause Windows to behave as if the process has been started from Explorer with the "Run as Administrator" menu command. The user will be prompted with the UAC to confirm they want to...
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
make sure the ServicePointManager settings are made before the HttpWebRequest is created, else it will not work. :peepoBusiness: