使用 Html.RenderPartial 传参数 ,遇到问题:
@{ Html.RenderPartial("_PartivalViewCountryMenu", CountryId);}
问题: 没有名为“RenderPartial”的适当方法,但似乎有一个该名称的扩展方法。扩展方法不能进行动态调度。请考虑强制转换动态参数,或调用不含扩展方法语法的扩展方法
解决办法:
@{ Html.RenderPartial("_PartivalViewCountryMenu", (Int32)CountryId);} /// Int32是在_PartivalViewCountryMenu中 定义Model
主要是 具体类型转化
PS: http://stackoverflow.com/questions/3822546/using-html-renderpartial-in-ascx-files