asp.net-mvc – C#MVC FindPartialView无法找到路径

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – C#MVC FindPartialView无法找到路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用MVC4.I我正在尝试获取html字符串视图.
ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext,viewName);

我将viewname作为“create”.但是返回viewResult是view为null并显示SearchedLocartion也喜欢,

~/Views/LWWApplication/Create.aspx
~/Views/LWWApplication/Create.ascx
~/Views/Shared/Create.aspx
~/Views/LWWApplication/Create.cshtml
~/Views/Shared/Create.cshtml

实际上第四个是文件(〜/ Views / LWWApplication / Create.cshtml).但是返回就像没有找到.视图和控制器包含相同的文件夹结构.

请帮忙.

解决方法

试试这个,它在MVC3中工作

ViewName应包含整个路径,如〜/ Views / Shared / _Create.cshtml

ViewEngineResult viewResult = ViewEngines.Engines.FindPartialView(ControllerContext,viewName);
原文链接:https://www.f2er.com/aspnet/246892.html

猜你在找的asp.Net相关文章