javascript GIF JPG
1 2 3 4 5 6 7 |
if((document.Frm.file1.value.toUpperCase().lastIndexOf(".JPG")==-1) && (document.Frm.file1.value.toUpperCase().lastIndexOf(".GIF")==-1)) { alert("업로드는 jpg와 gif 파일만 하실수 있습니다.") return false } |
ASP save
If (Len(file1) > 0 and (right(UCase(file1),3)="GIF" OR right(UCase(file1),3)="JPG") ) then ' 첨부파일이 있을 때만 GIF JPG 업로드 end if