【发布时间】:2011-04-10 20:33:48
【问题描述】:
在我安装 ASP.NET MVC 1.0 RTM 之前,调用一直正常。
Error: CS0121: The call is ambiguous between the following methods or properties
代码 sn-p
<%Html.RenderAction("ProductItemList", "Product"); %>
动作方法
public ActionResult ProductItemList()
{
return View("~/Views/Product/ProductItemList.ascx", _repository.GetProductList().ToList());
}
【问题讨论】:
标签: c# .net asp.net-mvc renderaction