Skip to content

Instantly share code, notes, and snippets.

@mcintyre321
Created August 14, 2013 12:31
Show Gist options
  • Save mcintyre321/6230628 to your computer and use it in GitHub Desktop.
Save mcintyre321/6230628 to your computer and use it in GitHub Desktop.
Example of a CodeView for AspMvc
public class IndexView : CodeView<IndexViewModel>
{
protected override void Render(CQ doc, IndexViewModel model, ViewContext viewContext)
{
doc["body"].Append("<div>" + viewContext.ViewBag.Message + "</div>");
}
}
@mcintyre321
Copy link
Author

ASP MVC viewengine that uses a CsQuery DOM model to render, rather than templates

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment