I'm not sure if this is a common scenario but I couldn't find anything on Google on how to do this.In my Model I have a string property that contains the entire html for an external website. I want to display this html on my page to display the webpage as a whole, along with a few other controls at the top of the page.For example, consider I have a div at the top of the page with a search box. I want to enter a url into that box and display it in a div below. My code behind retrieves the webpage markup as a string.Note: There seem to be solutions using an iFrame, but I don't wish to pass a URL. I want to retrieve the html as a string and display it that way.Thanks.