我正在尝试修改此代码: http: //www.codeproject.com/Articles/260470/PDF-reporting-using-ASP-NET-MVC3 以获取 ViewBag 数据以在 PDF 中呈现视图。
基本上,我需要将我的 ViewBag 的新上下文传递给 Html.RenderPartial,现在的代码是:
Html.RenderPartial(viewName, model);
我正在尝试将其更改为:
Html.RenderPartial(viewName, model, new ViewDataDictionary(ViewBag));
我没有收到任何错误,但字典保持为空。
BR