정보의 공유 사회

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” })      ...
Java

HttpPostedFileBase를 바이트(Bytes[]) 로 변환

BinaryReader 클래스를 사용하여 쉽게 변환이 가능하다. public static byte[] ConverToBytes(HttpPostedFileBase file) {             //방법 1             var length = file.InputStream.Length;             byte[] arrayData = null;             using (var binaryReader = new BinaryReader(file.InputStream))             {                 arrayData = binaryReader.ReadBytes(file.ContentLength);             }             return...
error: Content is protected !!