I have a database which has stored HTML code sources for different articles which are not in similar HTML design pattern. I want to display these codes in windows form application control e.g WebBrowser control so that it can be displayed in its original HTMLdesign style as if in the browser.But i hope if this process doesn't include creating html files on hard drive to read from it and i wish if there is a way to make the WebBrowser control navigate from objects created in the memory not created on hard drive .. For example i wish if the code could be like this :
HTMLFile myfile = new HTML File (htmlcode);
webbrowser1.Navigate(myfile);