Category: Front-End

화면단 개발관련 카테고리입니다.

Front-End

[Vue router] 리다이렉트 오류 Uncaught (in promise) Errorr: Redirected when going from “A” to “B” via a navigation guard.

사용자들이 로그인해서 사용하는 사이트의 세션이 끊겼을 때  로그인 페이지로 이동하도록 다음과 같이 코드를 적용하였다.   정확한 이유는 모르겠으나 서버사이드 로그인페이지 주소(/common/login.do) 호출시 리턴코드로 404가 반환되었다....
Front-End

[HTML] Radio버튼 체크값 가져오기

< ul>                      < li style=”float:left; width:130%;”>        < label class=”subject3″>구분         @Html.RadioButton(“DisplayFlag”, 1, new { @class = “radio”, @id = “radio1”, @checked = “checked” })        < label class=”normal” for=”radio1″>영어< /label>         @Html.RadioButton(“DisplayFlag”, 0, new { @class = “radio”, @id = “radio2” })      ...
Front-End

[HTML] 태그 속성 중 readonly 와 disabled의 차이점

< input type=”text” id=”fileName” value=”test.txt” readonly /> < input type=”text” id=”fileName” value=”test.txt” disabled /> Form를  submit를 하였을 때  readonly 의 경우  백엔드 쪽으로 값이 넘어오지만,  disabled의 경우 백엔드 쪽으로 값이 넘어 오지 않는다.   [asp.net mvc 4 Razor 이용시]@Html.TextBoxFor(m => m.ManagerAddress, new { @class = "k-input", @readonly = "readonly" })@Html.TextBoxFor(m => m.OriginNumbers, new { @class = "k-input", type = "hidden", @readonly = "readonly" })@Html.RadioButtonFor(m => m.IsPublicAmount, false, new { @class = "radio", disabled = "disabled" })@Html.RadioButtonFor(m => m.IsPublic, "true", new { id = "IsPublic", disabled = "disabled" })@Html.CheckBoxFor(x => Model.Company[i].ServiceFee, new { @class = "ServiceFee_" + Model.Company[i].Year, disabled = "disabled" })< label>사용< /label>                     //한글...
error: Content is protected !!