示例#1
0
 protected override IView CreatePartialView(ControllerContext controllerContext, string partialPath)
 {
     var v = new PrecompileView(FetchUrlType(partialPath), partialPath);
     return v;
 }
示例#2
0
 protected override IView CreateView(ControllerContext controllerContext, string viewPath, string masterPath)
 {
     var v = new PrecompileView(FetchUrlType(viewPath), viewPath);
     return v;
 }