Skip to content
Andrew Bullock edited this page Jun 2, 2018 · 1 revision

Views

MustardBlack uses a fork of System.Web.Razor containing some bugs fixes. For all common usages, its identical.

When returning a view from a Handler, you can provide just its name, or a full (virtual) path. The below are all valid directives

return View("ViewName");
return View("ViewName.cshtml");
return View("~/path/to/ViewName.cshtml");

TODO

Clone this wiki locally