asp.net mvc c# - ViewData类的属性EntryList

发布于 2024-09-16 09:13:00 字数 664 浏览 2 评论 0原文

我不知道访问 ViewData 中的 EntryList 时出现问题。

  <%= Html.RenderPartial("LogOnControl", new NISE.Web.TestForum.Views.Shared.PaginationViewData()
  {
      PageIndex = ViewData.*EntryList*.PageIndex,
      TotalPages = ViewData.*EntryList*.TotalPages,
      PageActionLink = Url.Action("List","Entry", new { category = ViewData.Category, page = "{page}"}),
      TotalCount = ViewData.*EntryList*.TotalCount,
      PageSize = ViewData.*EntryList*.PageSize
  }, null)%>

我做了像这里的一切

但它不起作用...:(

I dont know where is my problem to access EntryList in ViewData.

  <%= Html.RenderPartial("LogOnControl", new NISE.Web.TestForum.Views.Shared.PaginationViewData()
  {
      PageIndex = ViewData.*EntryList*.PageIndex,
      TotalPages = ViewData.*EntryList*.TotalPages,
      PageActionLink = Url.Action("List","Entry", new { category = ViewData.Category, page = "{page}"}),
      TotalCount = ViewData.*EntryList*.TotalCount,
      PageSize = ViewData.*EntryList*.PageSize
  }, null)%>

I did everything like here

but it doesnt works... :(

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

知你几分 2024-09-23 09:13:00

您链接到的博客条目上发布的评论之一说:

我正在尝试使用 MVC Preview 3,但在视图表单中系统找不到 ViewData.EntryList。它在哪里?

答案是:

您需要一个强类型的 ViewData 类 - EntryList 只是此 ViewDataClass 中的一个示例属性。这是一篇关于强类型 ViewData 类的精彩博文:
http://blog .codeville.net/2008/02/21/aspnet-mvc-making-strongly-typed-viewpages-more-easly/

One of the comments posted on the blog entry you linked to says:

I’m trying with MVC Preview 3 but at the view form the system do not find ViewData.EntryList. Where is it?

The answer was:

You need a strongly typed ViewData class – EntryList is just a sample property in this ViewDataClass. Here is a nice blogpost about strongly typed ViewData classes:
http://blog.codeville.net/2008/02/21/aspnet-mvc-making-strongly-typed-viewpages-more-easily/

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