radiobutton (1) 썸네일형 리스트형 Razor HtmlHelper - Radio button HtmlHelper 클래스는 RadioButton 의 두 가지 유형의 기본 함수를 제공한다. - RadioButton() - RadioButtonFor() 의 Html 랜더링은 RadioButton() 함수를, 모델을 이용한 랜더링은 RadioButtonFor() 함수를 사용한다. 기본 모델 : public class Student { public int StudentId { get; set; } public string StudentName { get; set; } public string Gender { get; set; } } Html.RadioButtonFor() RadioButtonFor() 의 첫 번째 유형 매개변수는 모델 클래스용이고, 두 번째 유형 매개변수는 속성용이다. RadioButto.. 이전 1 다음