Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
aspxエンジンでmVC3を使用していますが、
<%html.TextBoxFor(m=m.Code,new {maxlength="6"})%>
リソースファイルから値「6」を取得したい
(フォルダー内の) グローバル リソース ファイルを定義しApp_GlobalResources、厳密に型指定されたクラスを使用して値にアクセスできます。
App_GlobalResources
<%= html.TextBoxFor(m = m.Code, new { maxlength = MyResources.MaxLength }) %>