提取值以在标签元素上使用?
嗨,
标签有一个指向编辑器的 for 属性,例如:
<label for="ModelViewAd_Title">Titel</label>
我正在构建一个用于生成标签的自定义帮助器,该方法头如下所示:
public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> self, Expression<Func<TModel, TValue>> expression, Boolean showToolTip)
提取此值的最简单方法是什么?或者我必须手动构建 for value 吗?
致以诚挚的问候
Hi,
Label has a for attribute that pointe to the editor for example :
<label for="ModelViewAd_Title">Titel</label>
I am building a custom helper for generating the label and this methodhead look like this :
public static MvcHtmlString LabelFor<TModel, TValue>(this HtmlHelper<TModel> self, Expression<Func<TModel, TValue>> expression, Boolean showToolTip)
What is the easiest way to extract this for value? Or do I have to manually build the for value?
BestRegards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样:
Like this:
本文解决了我的问题:
http://weblogs.asp.net/imranbaloch/archive/2010/07/03/asp-net-mvc-labelfor-helper-with-htmlattributes.aspx
详细信息:
This article solved my problem :
http://weblogs.asp.net/imranbaloch/archive/2010/07/03/asp-net-mvc-labelfor-helper-with-htmlattributes.aspx
In detail :