我正在从事一个 ASP.Net MVC 电子商务项目。我收到以下异常。

c# - ASP.Net MVC 项目中的 HttpCompileException-LMLPHP

这个异常的原因是什么?

部分代码:

c# - ASP.Net MVC 项目中的 HttpCompileException-LMLPHP

[此处为第三张图片][3]

最佳答案

foreach 循环需要某种集合( ListIEnumerable 等)的定义。

因此,为了解决部分 View 的问题.. 在顶部,您需要

@model IEnumerable<Ecommerce.Models.Products>

然后在您的主 View 中添加
@Html.Partial("_ProductsView", Model)

那么你的 foreach 正在阅读..“产品列表中的 Foreach 项目”......执行此操作

关于c# - ASP.Net MVC 项目中的 HttpCompileException,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36340613/

10-17 00:46