WebBrowser Win Form

0

Good morning, does anyone know if it is possible to render the result of a query with the class WebClient in a WebBrowser of ?

EDIT

The response of @Leandro , served me for what I needed, the only thing is that the code has a js that is calling resources that do not charge them with the webclient, I do not know if there is any way to solve this. I am getting the result of a report in reporting services

    
asked by Marcos 28.01.2016 в 14:52
source

1 answer

2

If you have the html as text in a variable you could assign it to WebBrowser using

webBrowser1.DocumentText = html;

WebBrowser.DocumentText Property

    
answered by 28.01.2016 в 15:38