在MVC中,我们曾经有return View("foo",modeldata)
,因此我可以返回任意视图及其关联模型。我该怎么做呢?
剃刀页面?我正在寻找像
var p=new ListingPageModel();
// populate p model
return p.Page();
我试过这个,但无济于事:
HttpContext.Request.Path = "/listado";
HttpContext.Request.QueryString = new QueryString("");
ListadoModel l = new ListadoModel();
l.Listing= myListing.ToList();
l.PageContext = new PageContext(this.PageContext);
return l.Page();