0
我使用MVC3隨着ASPX引擎,使用資源鍵MVC 3 aspx文件
<%html.TextBoxFor(m=m.Code,new {maxlength="6"})%>
我瓦納采取vlaue「6」從資源文件
我使用MVC3隨着ASPX引擎,使用資源鍵MVC 3 aspx文件
<%html.TextBoxFor(m=m.Code,new {maxlength="6"})%>
我瓦納采取vlaue「6」從資源文件
你可以定義一個全局資源文件(在你的App_GlobalResources
文件夾),然後使用強類型類訪問值:
<%= html.TextBoxFor(m = m.Code, new { maxlength = MyResources.MaxLength }) %>
是什麼問題? –