.Net programming notes
@Html.CheckBoxFor(m => m.ForTest, new { title = "測試" })
enum GenderType { male, femail, others }
@Html.DropDownListFor(model => model.Gender, new SelectList(Enum.GetValues(typeof(GenderType))))
@Html.LabelFor(m => m.Title, new { style = "display:inline" })