Skip to content

Commit

Permalink
zip 파일 내부 검사 수행 후 제외사유 출력되도록 기능 구현.
Browse files Browse the repository at this point in the history
  • Loading branch information
KangShin committed Sep 25, 2020
1 parent d44e9c9 commit b09914d
Show file tree
Hide file tree
Showing 3 changed files with 415 additions and 25 deletions.
17 changes: 9 additions & 8 deletions src/OpenNetLinkApp/Components/SGPopUp/Transfer_Denied.razor
Original file line number Diff line number Diff line change
Expand Up @@ -61,14 +61,15 @@

<div class="col-sm-10">
<h6>@strExceptionContent</h6> <!--제외내역-->
<ul class="container-fluid ml-3" style="letter-spacing: 0px !importnat;}">
@foreach (string strReason in listDeniedReason)
{
<li>@strReason</li>
}
<!--<li>압축파일내 검사가 불가능한 파일 1개</li>-->
<!--<li>압축파일내 확장자 변경 포함 1623개</li>-->
<!--<li>압축파일내 알수 없는 형식 포함 132개</li>-->
<ul class="container-fluid ml-3" style="letter-spacing: 0px !importnat; line-style:none;}">
@foreach (string strReason in listDeniedReason)
{
<!--<li><i class="fas fa-circle"></i> @strReason</li> -->
<li>@strReason</li>
}
<!--<li>압축파일내 검사가 불가능한 파일 1개</li>-->
<!--<li>압축파일내 확장자 변경 포함 1623개</li>-->
<!--<li>압축파일내 알수 없는 형식 포함 132개</li>-->
</ul>
</div>

Expand Down
Loading

0 comments on commit b09914d

Please sign in to comment.