当我的模型属性使用任何 Html 帮助器呈现时,如何设置属性?示例:我有我的自定义数据注释:
[MyCustomAttribute(AnyHtmlProperty = "100")]
public string Name{get;set;}
所以,当这个属性被渲染时,我想要这样的东西:
<input type="text" anyHtmlProperty="100" />
当我的模型属性使用任何 Html 帮助器呈现时,如何设置属性?示例:我有我的自定义数据注释:
[MyCustomAttribute(AnyHtmlProperty = "100")]
public string Name{get;set;}
所以,当这个属性被渲染时,我想要这样的东西:
<input type="text" anyHtmlProperty="100" />