TextAreaFor (1) 썸네일형 리스트형 Razor HtmlHelper - TextArea HtmlHelper 클래스는 TextArea의 멀티 라인을 지원하는 두 가지 유형의 기본 함수를 제공한다. - TextArea() - TextAreaFor() 의 Html 랜더링은 TextArea() 함수를, 모델을 이용한 랜더링은 TextAreaFor() 함수를 사용한다. 기본적으로 2행 20열로 텍스트 영역을 만든다. 기본 모델 : public class Student { public int StudentId { get; set; } [Display(Name="Name")] public string StudentName { get; set; } public int Age { get; set; } public bool isNewlyEnrolled { get; set; } public string Pas.. 이전 1 다음