반응형

자주 사용하는 Html Helper 종류

Html Helper Strogly Typed 매핑되는 HTML Tag
@Html.BeginForm()   form (default meothd = post)
@Html.ActionLink   a
@Html.TextBox TextBoxFor input type=text
@Html.TextArea   textarea
@Html.Display DisplayFor 그냥 Text 그대로 출력
@Html.Label LabelFor label
@Html.Editor EditorFor
EditorforModel
input type=text
@Html.CheckBox CheckBoxFor input type=checkbox 
**hidden 함께 생성
@Html.RadioButton RadioButtonFor input type=radio
@Html.DropDownList DropDownListFor select
@Html.Hidden HiddenFor input type=hidden
@Html.ListBox ListBoxFor select multiple=multiple
@Html.Password PasswordFor input type=password

 

반응형

'IT > C#' 카테고리의 다른 글

C# .NET AES 256 암복호화  (0) 2023.12.22
PRG(POST/Redirect/GET)패턴  (0) 2023.03.30
ActionResult 종류  (0) 2023.03.30
Namespce 로 Controller 분리 - Route  (0) 2023.03.30
[MVC] ModelState.IsValid 가 false 인데 이유를 찾기 어려울때  (0) 2023.03.27

+ Recent posts