元素 IEnumerable< >不支持
我在我看来使用了以下代码,并制作了它在 (IEnumerable
) 中给出错误的模型
<%--
foreach (ITClassifieds.Models.Resume c in (IEnumerable<ITClassifieds.Models.Resume>)ViewData["getresume"])
{ %>
<input type="radio" name="resumeID" value="<%=c.ResumeID %>" checked="checked"/>Yes
<input type="radio" name="resumeID" value="0"/>No
<%} %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
返回到您在控制器中设置 getresume 的位置。确认其设置为您所期望的。
发布您收到的完整错误。
或者
http://geekswithblogs。 net/michelotti/archive/2009/10/25/asp.net-mvc-view-model-patterns.aspx - 讨论创建视图模型的几种不同方法。
另一个有趣的链接是 -> ViewModel 最佳实践
Go back to where you are setting getresume in your controller.. confirm that it is setting to what you are expecting.
Post the full error you are receiving.
Or
http://geekswithblogs.net/michelotti/archive/2009/10/25/asp.net-mvc-view-model-patterns.aspx - Talks about a few different ways to do your viewmodels.
Another interesting link would be -> ViewModel Best Practices