Can I post the contents of a contentEditable DIV directly? The only thing I can think of doing is copying the innerHtml into a hidden input element, but I'm sure there must be a more direct way.
View:
<div name="typer" id="typer" onclick="eraseFirst();this.contentEditable='true';">
Text here that the user typed, with html elements. How is this posted?
</div>
Controller:
[HttpPost]
public ActionResult BlogPage(BlogsPosts blogsposts)
{
// Is this a good start?
return View(blogsposts);
}