EditorFor 和 DisplayFor 的 ASP NET mvc 2 模板
我想控制或自定义 DisplayFor 和 EditorFor 生成的输出,这样它就不会渲染默认的 html css 标签,例如: ......
我希望这适用于所有视图,而不仅仅是类型或系统类型?最简单的解决方案是什么?
任何帮助将不胜感激。
I would like to control or customise the output generated by DisplayFor and EditorFor so it doesn't render the default html css tags for example:
.......
I would like this to be for all views not just a type or system type? And what is the simplest solution?
Any help would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以创建驻留在
Shared/DisplayTemplates 或 -/EditorTemplates
中的自定义 DisplayFor/EditorFor *.asxc 文件,传递相关的 <强>键入,然后渲染你想要的。以下文章更详细地解释了它:(
这介绍了 DisplayFor 方法 - EditorFor 的工作方式完全相同)
You can always create a custom DisplayFor/EditorFor *.asxc file that resides in either
Shared/DisplayTemplates or -/EditorTemplates
, pass the relevant type to it and just render what you want.Following article explains it in further details:
(This introduces the DisplayFor method - EditorFor works exactly the same way)