Created
August 14, 2013 12:31
-
-
Save mcintyre321/6230628 to your computer and use it in GitHub Desktop.
Example of a CodeView for AspMvc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class IndexView : CodeView<IndexViewModel> | |
{ | |
protected override void Render(CQ doc, IndexViewModel model, ViewContext viewContext) | |
{ | |
doc["body"].Append("<div>" + viewContext.ViewBag.Message + "</div>"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ASP MVC viewengine that uses a CsQuery DOM model to render, rather than templates