I have a c# win app program. I save the text with html format in my database but I want to show it in a webbrowser to my user.How to display the string html contents into we
Simple solution, I've tested is
webBrowser1.Refresh(); var str = "" + sender.ToString() + ""; webBrowser1.DocumentText = str;