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
Try this:
webBrowser1.DocumentText = "Please enter your name:" + "" + "continue" + "";