Click here to Skip to main content
15,949,686 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
estou usando o vs com c# coloquei o componente webbronser e a usei o comando
Google translate:
I am using VS with C# I put the component WebBrowser and I used the command

webbronserNavigate(site);


a primeira vez funcionou normalmente pore agora alterei o layout do site e o
Google translate:
the first time worked normally but now I changed the layout the site and the

webbronser.Navigate(site);


continua abrindo o site antigo, ele não busca o site novo
Google translate:
keeps opening the old site, it does not search the new site


What I have tried:

webbronser.navigate(site);
webbronser.source(site);
Posted
Updated 22-Jan-19 1:44am
v2
Comments
[no name] 21-Jan-19 13:59pm    
Recuerda que este es un foro en inglés. Tengo que hacer eso tambien
Laercio Tersi1 22-Jan-19 18:42pm    
buen día
¿Has encontrado una solución?
Laercio Tersi1 21-Jan-19 14:45pm    
Okay, if you can find the solution, please
ZurdoDev 21-Jan-19 15:31pm    
English.

1 solution

It sounds like your site is cached.

You can clear the Internet Explorer cache, either manually or through code[^].

Or, you could try forcing a refresh of the site:
C#
webBrowser.Refresh(WebBrowserRefreshOption.Completely);

There's more discussion in this StackOverflow thread:
c# - WebBrowser control caching issue - Stack Overflow[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900