i have a database which stores the page name and HTML content.
When the page loads i want to load the HTML content from the DB and render it on the page somehow, how can i do this? What sort of control should i use?
Use the LiteralControl, and just dump your HTML content into it.
string somehtml = "<div>stuff</div>";
MyLiteralControl.Text = somehtml;