속성 | description |
---|---|
<input type=”hidden” asp-for=”PATTERN_IDX” /> | hidden input |
autocomplete=”off” | HTML 자동완성 없음 |
<a asp-action=”Create” asp-route-paramname=”@ViewBag.ID” class=”btn btn-primary btn-sm”> 생성 + </a> | 버튼에 파라메터 전달 * asp-route-paramname : route variable names id ( 변경가능) |
<a href=”@Url.Action(“index”, “ControllerName”, new { paramname = item.IDX})”> 생성 + </a> | 링크에 파라메터 전달 |
<p class=”py-1 m-0″> | y 마진1 , 마진 0 |
<table class=”tables table-hover table-bordered table-condensed”> | 롤 오버시 색 변경 |
style=”IME-MODE: disabled” | Input 영문만 입력 / 기본모드 한글 : active |
text-transform: uppercase | 모든 단어는 대문자로 표기 됩니다. /소문자 : lowercase |
@Html.TextAreaFor(m => m.USER, new { @class = “form-control text-uppercase”, rows = “4”, placeholder = “예) 홍길동” }) | @Html.TextAreaFor |
text-uppercase | Bootrap upppercase |
<select asp-for=”FLAG_TEST” asp-items=”Html.GetEnumSelectList<EnumFlag_List>()” class=”form-control”></select> | Select Items / enum 에서 defuault 설정을 불가능 하기 때문에 <option selected=’selected’ vaule=”><option> 사용 |
<a asp-controller=”People” asp-action=”Edit” asp-route-id=”@item.NameID”>Edit</a> | asp-controller 지정 |
1. model 값으로 asp-route 파라메터 세팅 하기
set the route parameter via the page model
1 2 3 4 5 6 7 8 9 10 11 12 |
@model WebApplication6.Models.TenantsSale @{ ViewData["Title"] = "TenantSalesIndex"; Layout = "~/Views/Shared/_Layout.cshtml"; } <h2>set the route parameter via the page model</h2><br /> <a id="xyz" class="c-header-nav-link text-black-50" asp-controller="Home" asp-action="Index" asp-route-tenants_pid="@Model.tenants_pid" asp-route-users_pid="@Model.users_pid" asp-route-sales_type="@Model.sales_type">Link A</a><br /> |