如何填充 ModelMetaData 上的 Watermark 属性?
我刚刚读完 http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-2-modelmetadata.html 在 Brad 的文章中列出了 Watermark
属性但没有提及使用哪个 DataAnnotation 来填充它。
I've just finished reading http://bradwilson.typepad.com/blog/2009/10/aspnet-mvc-2-templates-part-2-modelmetadata.html In the article Brad lists the Watermark
property but there is no mention of which DataAnnotation is used to populate it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MVC 2 不支持开箱即用的注释来设置此属性。在 MVC 3 中,可以通过
[Display(Prompt = "...")]
设置。如果要在 MVC 2 中使用 DataAnnotations4 属性(如 [Display]),则需要使用 MVC Futures AspNet4。请参阅 http://weblogs.asp.net/rajbk/archive/2010/04/27/localization-in-asp-net-mvc-2-using-modelmetadata.aspx 有关如何连接所有内容的示例。
There's no annotation supported by MVC 2 out-of-the-box that will set this property. In MVC 3, it will be settable via
[Display(Prompt = "...")]
.If you want to use DataAnnotations4 attributes (like [Display]) in MVC 2, you need to use MVC Futures AspNet4. See http://weblogs.asp.net/rajbk/archive/2010/04/27/localization-in-asp-net-mvc-2-using-modelmetadata.aspx for an example of how to hook everything up.