元素 IEnumerable< >不支持

发布于 2024-11-09 07:04:02 字数 470 浏览 0 评论 0 原文

我在我看来使用了以下代码,并制作了它在 (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
  <%} %>

i have used the following code in my view and made the model it is giving the error in (IEnumerable<ITClassifieds.Models.Resume>)

<%--  
    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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不如归去 2024-11-16 07:04:02
  1. 返回到您在控制器中设置 getresume 的位置。确认其设置为您所期望的。

  2. 发布您收到的完整错误。

或者

  1. 为自己创建一个视图模型并使用它。动态很棒,我经常使用它们,但是当涉及到视图时,我总是选择强类型。

http://geekswithblogs。 net/michelotti/archive/2009/10/25/asp.net-mvc-view-model-patterns.aspx - 讨论创建视图模型的几种不同方法。

另一个有趣的链接是 -> ViewModel 最佳实践

  1. Go back to where you are setting getresume in your controller.. confirm that it is setting to what you are expecting.

  2. Post the full error you are receiving.

Or

  1. Create yourself a viewmodel and use that instead. Dynamics are great and I use them a fair amount but when it comes to views I always go with strongly typed.

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文