Reputation: 1020
I want to load telegram.org in my WindowsFormsApplication with C#
in webBrowser with this code:
webBrowser1.Navigate("https://web.telegram.org");
But result is empty.
How can I load this site?
Upvotes: 4
Views: 697
Reputation: 246
This is because dotnet WebBrowser control by default emulate IE version 9 but Telegram need IE version 11. Change the default emulation version in Registry and it's work correct. for change that value,you can use this article
Upvotes: 2