JAC
JAC

Reputation: 1020

Can't load Telegram.org in C# webbrowser?

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

Answers (1)

Alireza Orumand
Alireza Orumand

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

Related Questions