-
Notifications
You must be signed in to change notification settings - Fork 4
Views
Andrew Bullock edited this page Jun 2, 2018
·
1 revision
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