问题标签 [viewdata]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - ViewData 中的 HTML 标记呈现问题?此外,MVC 中的多视图功能?
我正在尝试使用 html 标记填充 ViewData 实例,如下所示。当页面呈现时,html 标签被呈现为文本而不是 html 标记。有谁知道为什么?
控制器代码:
查看代码:
其次,我过去曾在 asp.net webforms 中使用过 MultiView 功能。这个功能很理想,喜欢在 MVC 中实现类似的功能。
有什么方法可以根据从控制器代码到视图中的占位符的函数结果(如上面的“if”语句)调用不同的 PartialViews?
asp.net-mvc - 您可以将 PartialView 放入 ViewData 对象吗?
我正在尝试模仿 webforms 多视图功能,我能想到的唯一方法是将 PartialView 放入 ViewData 对象中?类似于以下内容:
查看代码:
控制器代码:
你会怎么做?
c# - 使用 ASP.NET MVC 将数据传递和返回到简单的网格表单
我有一个带有简单表格和高级搜索表单的页面。我传递List<Customers>
给模型:
那么将数据传递和返回到搜索表单的最佳方式是什么?我想使用验证或其他东西,但我认为传递数据ViewData
不是一个好主意。有什么建议么?
asp.net-mvc - 如何使用 ViewData 在母版页中显示消息?
如何在母版页上显示消息。消息由操作发送。
ruby-on-rails - ASP.NET MVC: Passing instance variables to the View like in Ruby
Yes, I know that in ASP.NET MVC you have to use ViewModels. But I'm tired of writing countless amounts of ViewModel classes. Besides I'd like to just pass the Validation model to the view, instead of that I have to pass the whole ViewModel, so I get ugly code like
Instead of
I really love RoR's @instance_variables
where you just pass all the variables you need without creating new classes for that.
How can I do that? I think it's impossible because I tried everything, even C# 4 dynamic
feature.
Any ideas?
asp.net-mvc - ASP.NET MVC:将多个对象传递给视图,包括验证模型
我喜欢使用模型进行验证
它工作得很好,但是当我需要传递额外的数据时,我需要创建一个新的 ViewModel 类并且我失去了灵活性。
我怎样才能使它更容易和更好看?
asp.net-mvc - ASP.NET MVC:在 POST 请求中向视图发送数据
我有以下代码:
那么我怎样才能让它保持干燥而不重复我已经做过的事情呢?
asp.net-mvc - 新的 ViewModel 并没有淘汰 ASP.NET MVC 3 中的 ViewModel 模式,对吧?
据我了解,ViewModel 模式旨在将所有相关数据传递给 View,因为 1)视图不应执行任何数据检索或应用程序逻辑,以及 2)它支持类型安全、编译时检查和编辑器智能感知查看模板。
由于动态表达式是在运行时定义的,这是否意味着我们没有得到任何 2) 的好处?
c# - 如何将信息从控制器传递到视图数据?asp net mvc c#
我正在为我的 mvc 项目构建一个分页并且有以下问题。我为分页做了一切,现在只需要传递一个页面信息来查看视图中的数据。
我有一个用户控制分页:
分页.ascx:
分页.ascx.cs:
类 PagedList.cs:
在视图中我正在执行以下操作:
我不知道我应该在我的控制器中做什么。如何将页面信息传递给 ViewData?我的控制器看起来像这样,你能帮我扩展它吗?