我是否应该创建一个属性来使表名采用驼峰式命名并留有空格?
我想自定义在动态数据网站中输出的表格的标题。 具体来说,如果列的名称类似于“PhonebookManager”,我希望它显示“Phonebook Manager”(注意空格)。 我应该在哪里寻找完成这项工作的机会?
I want to customize the headings of my tables outputted in a dynamic data website. Specifically, if a column has a name like "PhonebookManager", I want it to display, "Phonebook Manager" (note the space).
Where should I be looking to get this done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 DisplayName 属性 修改显示的文本显示为该列。 如果您希望自动创建这些属性,请查看 此博客文章。 它并没有完全做到这一点,但它可以帮助您实现这一目标。 (从 Global.asax.cs 文件开始 - 查看第 81-86 行)
Use the DisplayName attribute to modify the text that is displayed for the column. If you are looking to have these attributes automatically created for you, take a look at this blog post. It doesn't do exactly that, but it gets you some of the way there. (start in the Global.asax.cs file - look at lines 81-86)