前端之家收集整理的这篇文章主要介绍了
asp.net-mvc – 奇怪的MVC问题,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下
代码的麻烦:
@Html.RenderPartial("_SortDisplayPage",new ViewDataDictionary { { "bottomClass","pagingBottom" } })
它给出错误:
Cannot implicitly convert type void to object
我觉得这很小,但找不到它
你想要@ Html.Partial不是RenderPartial. RenderPartial直接写入响应,不返回值.部分返回一个MvcHtmlString,@运算符将写入响应.
原文链接:https://www.f2er.com/aspnet/249971.html