I'm currently using the following code to navigate Instagram in web-browser, but it didn't work and displays a blank page:
webBrowser1.Navigate("https://www.instagram.com/");
How should I change the code to reach this URL?
I'm currently using the following code to navigate Instagram in web-browser, but it didn't work and displays a blank page:
webBrowser1.Navigate("https://www.instagram.com/");
How should I change the code to reach this URL?
Please give more information like error message. Try to use some ScriptErrorsSuppressed property and error handling event to get more information about the error
Also try to update your registry keys with the help of link as the default version of the webbrowser control in a C# Windows Forms application is 7
In c# I did this
I put a button and text box. Put the URL in the textbox Made it so it loaded the text in the textbox then hide the textbox with
textBox1.Hide();