HelloWorld_Always
HelloWorld_Always

Reputation: 1565

how to make a webbrowser control go blank in c#?

Initially when the webbrowser is just loaded onto a form , it is blank(ie white color) . Once we go to a particular website , is there a way to make it go blank again .

I tried going through the methods , but did not find one that would make this happen . Is there another way or am i missing something ?

Upvotes: 18

Views: 21581

Answers (2)

Boston Fever
Boston Fever

Reputation: 141

You'll need to convert "about:blank" to a uri in order to use BinaryTox1n's answer.

webBrowser1.Navigate(new Uri("about:blank"));

Upvotes: 13

BinaryTox1n
BinaryTox1n

Reputation: 3566

Give this a try:

webBrowser1.Navigate("about:blank");

Upvotes: 43

Related Questions